msi: Fix the log mode for progress messages.

This commit is contained in:
Hans Leidekker 2011-11-01 11:06:46 +01:00 committed by Alexandre Julliard
parent be1a6d8323
commit 899e85ab26

View File

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