From e05951a39dd220e7225765a18f4b28017f5076e0 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Fri, 2 Jan 2009 18:25:13 -0600 Subject: [PATCH] start.exe: Don't use the NO_UI flag when invoked with /unix. --- programs/start/start.c | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/start/start.c b/programs/start/start.c index d98f215da6e..ed7df03099f 100644 --- a/programs/start/start.c +++ b/programs/start/start.c @@ -281,6 +281,7 @@ int wmain (int argc, WCHAR *argv[]) sei.lpFile = dos_filename; sei.lpDirectory = parent_directory = get_parent_dir(dos_filename); + sei.fMask &= ~SEE_MASK_FLAG_NO_UI; if (GetBinaryTypeW(sei.lpFile, &binary_type)) { WCHAR *commandline;