msi: Fix the condition of a FIXME.
This commit is contained in:
parent
0a05a87436
commit
6dd927a265
|
@ -240,8 +240,8 @@ UINT WINAPI MsiSourceListGetInfoW( LPCWSTR szProduct, LPCWSTR szUserSid,
|
|||
if (szUserSid)
|
||||
FIXME("Unhandled UserSid %s\n",debugstr_w(szUserSid));
|
||||
|
||||
if (dwContext == MSIINSTALLCONTEXT_USERUNMANAGED)
|
||||
FIXME("Unknown context MSIINSTALLCONTEXT_USERUNMANAGED\n");
|
||||
if (dwContext != MSIINSTALLCONTEXT_USERUNMANAGED)
|
||||
FIXME("Unhandled context %d\n", dwContext);
|
||||
|
||||
rc = OpenSourceKey(szProduct, &sourcekey, dwOptions, dwContext, FALSE);
|
||||
if (rc != ERROR_SUCCESS)
|
||||
|
|
Loading…
Reference in New Issue