James Hawkins : msi: Fix the condition of a FIXME.
Module: wine Branch: master Commit: 6dd927a265b98bd4dc2bf59324726bd950faf816 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6dd927a265b98bd4dc2bf59324... Author: James Hawkins <truiken(a)gmail.com> Date: Sun Nov 25 18:07:52 2007 -0600 msi: Fix the condition of a FIXME. --- dlls/msi/source.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msi/source.c b/dlls/msi/source.c index e6e1de5..68f94b5 100644 --- a/dlls/msi/source.c +++ b/dlls/msi/source.c @@ -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)
participants (1)
-
Alexandre Julliard