[or-cvs] r8744: Fix up the strcmp logic to actually display the error messag (tor/trunk/contrib)

phobos at seul.org phobos at seul.org
Wed Oct 18 03:47:34 UTC 2006


Author: phobos
Date: 2006-10-17 23:47:31 -0400 (Tue, 17 Oct 2006)
New Revision: 8744

Modified:
   tor/trunk/contrib/tor-mingw.nsi.in
Log:
Fix up the strcmp logic to actually display the error message.  Include
an explanation for spurious messageboxes for those curious as to their
existence


Modified: tor/trunk/contrib/tor-mingw.nsi.in
===================================================================
--- tor/trunk/contrib/tor-mingw.nsi.in	2006-10-18 03:31:13 UTC (rev 8743)
+++ tor/trunk/contrib/tor-mingw.nsi.in	2006-10-18 03:47:31 UTC (rev 8744)
@@ -130,8 +130,10 @@
    File "${BIN}\torbutton-1.0.4-fx+tb.xpi"
 
    ReadRegStr $1 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\firefox.exe" "Path"
+   ; This message box is for debugging
    MessageBox MB_OK "Firefox is installed at $1"
-     StrCmp $1 "" +1 0
+     StrCmp $1 "" +4 0 ; if Path is empty or null, then skip to an error, otherwise proceed normally
+        ; This message box is for debugging
         MessageBox MB_OK "I'm going to run $1firefox.exe --install-global-extension $INSTDIR\torbutton"
 	Exec '"$1firefox.exe" -install-global-extension $INSTDIR\torbutton-1.0.4-fx+tb.xpi'
 	Goto +2



More information about the tor-commits mailing list