mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
fix a bug from me in COPYCMD check code it was two /V
it should only have been one /N = short file name (dos 8.3 file mname not /S) svn path=/trunk/; revision=16576
This commit is contained in:
parent
84dc5b02f3
commit
e75662b821
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ INT cmd_copy (LPTSTR cmd, LPTSTR param)
|
|||
evar[t+1]=_T(' ');
|
||||
}
|
||||
|
||||
else if (_tcsncicmp(_T("/V"),&evar[t],2)==0)
|
||||
else if (_tcsncicmp(_T("/N"),&evar[t],2)==0)
|
||||
{
|
||||
dwFlags |= COPY_SHORTNAME;
|
||||
evar[t]=_T(' ');
|
||||
|
|
Loading…
Reference in a new issue