Module: wine Branch: master Commit: cf3f442754cf3faca81d23186e6dc83eabed1370 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cf3f442754cf3faca81d23186e...
Author: James Hawkins truiken@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); }