Handle the + character only optionally as a token seperator, so that other commands like rename are not affected.

svn path=/trunk/; revision=56349
This commit is contained in:
Timo Kreuzer 2012-04-14 21:35:58 +00:00
parent a77220cc37
commit ece4aa3f3f
16 changed files with 87 additions and 87 deletions

View file

@ -321,7 +321,7 @@ INT cmd_mkdir (LPTSTR param)
return 0;
}
p = split (param, &argc, FALSE);
p = split (param, &argc, FALSE, FALSE);
if (argc == 0)
{
ConErrResPuts(STRING_ERROR_REQ_PARAM_MISSING);
@ -411,7 +411,7 @@ INT cmd_rmdir (LPTSTR param)
return 0;
}
arg = split (param, &args, FALSE);
arg = split (param, &args, FALSE, FALSE);
dirCount = 0;
/* check for options anywhere in command line */