James Hawkins : msi: Read the disk prompt source list property from the user-unmanaged context.

Alexandre Julliard julliard at winehq.org
Tue Feb 26 05:45:15 CST 2008


Module: wine
Branch: master
Commit: acfed4cfab7b2c15650d0c3fb105e93dee36cbbe
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=acfed4cfab7b2c15650d0c3fb105e93dee36cbbe

Author: James Hawkins <jhawkins at codeweavers.com>
Date:   Tue Feb 26 01:52:34 2008 -0600

msi: Read the disk prompt source list property from the user-unmanaged context.

---

 dlls/msi/action.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index 7058aa8..54a9fbe 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -4255,13 +4255,13 @@ static UINT ACTION_ResolveSource(MSIPACKAGE* package)
         DWORD size = 0;
 
         rc = MsiSourceListGetInfoW(package->ProductCode, NULL, 
-                MSIINSTALLCONTEXT_USERMANAGED, MSICODE_PRODUCT,
+                MSIINSTALLCONTEXT_USERUNMANAGED, MSICODE_PRODUCT,
                 INSTALLPROPERTY_DISKPROMPTW,NULL,&size);
         if (rc == ERROR_MORE_DATA)
         {
             prompt = msi_alloc(size * sizeof(WCHAR));
             MsiSourceListGetInfoW(package->ProductCode, NULL, 
-                    MSIINSTALLCONTEXT_USERMANAGED, MSICODE_PRODUCT,
+                    MSIINSTALLCONTEXT_USERUNMANAGED, MSICODE_PRODUCT,
                     INSTALLPROPERTY_DISKPROMPTW,prompt,&size);
         }
         else




More information about the wine-cvs mailing list