Module: wine Branch: master Commit: 90fd0285f04fcc5d2d44c016d2d51370f518eca5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=90fd0285f04fcc5d2d44c016d2...
Author: Hans Leidekker hans@codeweavers.com Date: Wed Jan 7 15:28:14 2015 +0100
xcopy: Ignore the /V option.
---
programs/xcopy/xcopy.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/programs/xcopy/xcopy.c b/programs/xcopy/xcopy.c index 2134a5e..486e5b1 100644 --- a/programs/xcopy/xcopy.c +++ b/programs/xcopy/xcopy.c @@ -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);