James Hawkins : msi: Fix a copy and paste error.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jul 13 08:30:12 CDT 2007


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

Author: James Hawkins <truiken at gmail.com>
Date:   Thu Jul 12 11:35:57 2007 -0700

msi: Fix a copy and paste error.

---

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

diff --git a/dlls/msi/package.c b/dlls/msi/package.c
index f3d6130..31bfb7e 100644
--- a/dlls/msi/package.c
+++ b/dlls/msi/package.c
@@ -1666,7 +1666,7 @@ HRESULT WINAPI mrp_GetComponentState( IWineMsiRemotePackage *iface, BSTR compone
 HRESULT WINAPI mrp_SetComponentState( IWineMsiRemotePackage *iface, BSTR component, INSTALLSTATE state )
 {
     msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
-    UINT r = MsiSetFeatureStateW(This->package, (LPWSTR)component, state);
+    UINT r = MsiSetComponentStateW(This->package, (LPWSTR)component, state);
     return HRESULT_FROM_WIN32(r);
 }
 




More information about the wine-cvs mailing list