Commit 90fd0285 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

xcopy: Ignore the /V option.

parent c007b5f9
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment