From cf3f442754cf3faca81d23186e6dc83eabed1370 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Thu, 12 Jul 2007 11:35:57 -0700 Subject: [PATCH] msi: Fix a copy and paste error. --- dlls/msi/package.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/package.c b/dlls/msi/package.c index f3d6130e800..31bfb7e9a3f 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); }