From: Nikolay Sivov Subject: [PATCH] wscript: Ignored 'nologo' switch Message-Id: <1397802592.29725.0.camel@laptop> Date: Fri, 18 Apr 2014 10:29:52 +0400 --- programs/wscript/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/programs/wscript/main.c b/programs/wscript/main.c index cebabed..b232949 100644 --- a/programs/wscript/main.c +++ b/programs/wscript/main.c @@ -339,6 +339,7 @@ static void run_script(const WCHAR *filename, IActiveScript *script, IActiveScri static BOOL set_host_properties(const WCHAR *prop) { + static const WCHAR nologoW[] = {'n','o','l','o','g','o',0}; static const WCHAR iactive[] = {'i',0}; static const WCHAR batch[] = {'b',0}; @@ -354,6 +355,8 @@ static BOOL set_host_properties(const WCHAR *prop) wshInteractive = VARIANT_TRUE; else if(strcmpiW(prop, batch) == 0) wshInteractive = VARIANT_FALSE; + else if(strcmpiW(prop, nologoW) == 0) + WINE_FIXME("ignored %s switch\n", debugstr_w(nologoW)); else return FALSE; return TRUE;