[ros-diffs] [hpoussin] 21579: Fix 2nd stage setup. Patch by w3seek
hpoussin at svn.reactos.org
hpoussin at svn.reactos.org
Thu Apr 13 13:39:26 CEST 2006
Author: hpoussin
Date: Thu Apr 13 15:39:25 2006
New Revision: 21579
URL: http://svn.reactos.ru/svn/reactos?rev=21579&view=rev
Log:
Fix 2nd stage setup. Patch by w3seek
Modified:
trunk/reactos/dll/win32/setupapi/devinst.c
Modified: trunk/reactos/dll/win32/setupapi/devinst.c
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/setupapi/devinst.c?rev=21579&r1=21578&r2=21579&view=diff
==============================================================================
--- trunk/reactos/dll/win32/setupapi/devinst.c (original)
+++ trunk/reactos/dll/win32/setupapi/devinst.c Thu Apr 13 15:39:25 2006
@@ -3155,9 +3155,9 @@
FIXME("Case not implemented: InfFileName NULL\n");
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
}
- else if (Flags & ~(DI_NOVCP | DI_NOBROWSE | DI_FORCECOPY))
- {
- TRACE("Unknown flags: 0x%08lx\n", Flags & ~(DI_NOVCP | DI_NOBROWSE | DI_FORCECOPY));
+ else if (Flags & ~(DI_NOVCP | DI_NOBROWSE | DI_FORCECOPY | DI_QUIETINSTALL))
+ {
+ TRACE("Unknown flags: 0x%08lx\n", Flags & ~(DI_NOVCP | DI_NOBROWSE | DI_FORCECOPY | DI_QUIETINSTALL));
SetLastError(ERROR_INVALID_FLAGS);
}
else if ((Flags & DI_NOVCP) && FileQueue == NULL)
More information about the Ros-diffs
mailing list