Hans Leidekker : msi: Fix the log mode for progress messages.

Alexandre Julliard julliard at winehq.org
Tue Nov 1 13:23:24 CDT 2011


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

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Tue Nov  1 11:06:46 2011 +0100

msi: Fix the log mode for progress messages.

---

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

diff --git a/dlls/msi/package.c b/dlls/msi/package.c
index 4b59425..bd8a8d2 100644
--- a/dlls/msi/package.c
+++ b/dlls/msi/package.c
@@ -1766,9 +1766,8 @@ INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType, MSIREC
         log_type |= INSTALLLOGMODE_ACTIONSTART;
     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONDATA)
         log_type |= INSTALLLOGMODE_ACTIONDATA;
-    /* just a guess */
     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_PROGRESS)
-        log_type |= 0x800;
+        log_type |= INSTALLLOGMODE_PROGRESS;
 
     if ((eMessageType & 0xff000000) == INSTALLMESSAGE_ACTIONSTART)
     {




More information about the wine-cvs mailing list