Commit change mentioned in ChangeLog.

This commit is contained in:
Christopher Faylor 2000-09-13 19:57:36 +00:00
parent 99d7d12af0
commit 4f46dbc790
1 changed files with 2 additions and 0 deletions

View File

@ -307,6 +307,8 @@ quoted (char *cmd, int winshell)
strcpy (cmd, cmd + 1); strcpy (cmd, cmd + 1);
if ((p = strchr (cmd, quote)) != NULL) if ((p = strchr (cmd, quote)) != NULL)
strcpy (p, p + 1); strcpy (p, p + 1);
else
p = strchr (cmd, '\0');
return p; return p;
} }