msi: Fix the condition of a FIXME.

This commit is contained in:
James Hawkins 2007-11-25 18:07:52 -06:00 committed by Alexandre Julliard
parent 0a05a87436
commit 6dd927a265
1 changed files with 2 additions and 2 deletions

View File

@ -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)