Hans Leidekker : xcopy: Ignore the /V option.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Jan 7 17:15:37 CST 2015


Module: wine
Branch: master
Commit: 90fd0285f04fcc5d2d44c016d2d51370f518eca5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=90fd0285f04fcc5d2d44c016d2d51370f518eca5

Author: Hans Leidekker <hans at 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);




More information about the wine-cvs mailing list