mirror of
https://github.com/reactos/reactos.git
synced 2025-07-03 19:41:33 +00:00
[CMD]
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:
parent
a77220cc37
commit
ece4aa3f3f
16 changed files with 87 additions and 87 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue