xcopy: Ignore the /V option.

This commit is contained in:
Hans Leidekker 2015-01-07 15:28:14 +01:00 committed by Alexandre Julliard
parent c007b5f94c
commit 90fd0285f0
1 changed files with 3 additions and 0 deletions

View File

@ -826,6 +826,9 @@ static int XCOPY_ParseCommandLine(WCHAR *suppliedsource,
case '?': XCOPY_wprintf(XCOPY_LoadMessage(STRING_HELP));
rc = RC_HELP;
goto out;
case 'V':
WINE_FIXME("ignoring /V\n");
break;
default:
WINE_TRACE("Unhandled parameter '%s'\n", wine_dbgstr_w(word));
XCOPY_wprintf(XCOPY_LoadMessage(STRING_INVPARM), word);