]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
STABLE14-windows-nsis-fix-rpc-20070116 openafs-stable-1_4_3rc1
authorJeffrey Altman <jaltman@secure-endpoints.com>
Tue, 16 Jan 2007 17:21:31 +0000 (17:21 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Tue, 16 Jan 2007 17:21:31 +0000 (17:21 +0000)
remove the rpc fix.  the original code was correct

(cherry picked from commit 41df9870148af3527f828a26cc7fbb8d8ffb506e)

src/WINNT/install/NSIS/OpenAFS.nsi

index 453bf47b74b9508f817578d63f8fb969d94eff13..b6daebe64664786b8c6dbe84b8110f8ac599da39 100644 (file)
@@ -1243,13 +1243,13 @@ contInstall2:
    ; Check that RPC functions are installed (I believe any one of these can be present for
    ; OpenAFS to work)
    ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\RPC\ClientProtocols" "ncacn_np"
-   StrCmp $R0 "rpcrt4.dll" +1 contInstall3
+   StrCmp $R0 "rpcrt4.dll" contInstall3
    ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\RPC\ClientProtocols" "ncacn_ip_tcp"
-   StrCmp $R0 "rpcrt4.dll" +1 contInstall3
+   StrCmp $R0 "rpcrt4.dll" contInstall3
    ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\RPC\ClientProtocols" "ncadg_ip_udp"
-   StrCmp $R0 "rpcrt4.dll" +1 contInstall3
+   StrCmp $R0 "rpcrt4.dll" contInstall3
    ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\RPC\ClientProtocols" "ncacn_http"
-   StrCmp $R0 "rpcrt4.dll" +1 contInstall3
+   StrCmp $R0 "rpcrt4.dll" contInstall3
    
    MessageBox MB_OK|MB_ICONSTOP|MB_TOPMOST "An error was detected with your Windows RPC installation. Please make sure Windows RPC is installed before installing OpenAFS."
    Abort