mirror of
https://github.com/reactos/reactos.git
synced 2025-05-09 03:37:08 +00:00
... and also, please open your eyes (upper vs. lowercase letters).
svn path=/trunk/; revision=63136
This commit is contained in:
parent
cbb1745661
commit
89edba0174
1 changed files with 3 additions and 3 deletions
|
@ -1303,13 +1303,13 @@ void shell(int argc, const char *argv[])
|
|||
|
||||
if (argc > 1)
|
||||
{
|
||||
strncat(CmdLine, " /C", MAX_PATH - strlen(Cmdline) - 1);
|
||||
strncat(CmdLine, " /C", MAX_PATH - strlen(CmdLine) - 1);
|
||||
}
|
||||
|
||||
for (i=1; i<argc; i++)
|
||||
{
|
||||
strncat(CmdLine, " ", MAX_PATH - strlen(Cmdline) - 1);
|
||||
strncat(CmdLine, argv[i], MAX_PATH - strlen(Cmdline) -1);
|
||||
strncat(CmdLine, " ", MAX_PATH - strlen(CmdLine) - 1);
|
||||
strncat(CmdLine, argv[i], MAX_PATH - strlen(CmdLine) -1);
|
||||
}
|
||||
|
||||
StartupInfo.cb = sizeof( StartupInfo );
|
||||
|
|
Loading…
Reference in a new issue