aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-06-13 20:11:41 +0000
committerGerald Combs <gerald@wireshark.org>2012-06-13 20:11:41 +0000
commitc548b1097f0eeb498a8d7cceee50d0253bfdfada (patch)
tree327a96dc8cfc65036bc72ca6a16a8157f9247df4 /packaging
parenta9cb4061d456a0cd5d980d35110e4ae67a0c9973 (diff)
Use terminology that conforms better with the MSDN documentation and a
style that conforms better with the rest of the NSIS output. svn path=/trunk/; revision=43237
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/nsis/uninstall.nsi2
-rw-r--r--packaging/nsis/wireshark.nsi3
2 files changed, 3 insertions, 2 deletions
diff --git a/packaging/nsis/uninstall.nsi b/packaging/nsis/uninstall.nsi
index 4d663295c1..b2366787c7 100755
--- a/packaging/nsis/uninstall.nsi
+++ b/packaging/nsis/uninstall.nsi
@@ -62,7 +62,7 @@ Function un.Disassociate
un.Disassociate.doDeregister:
; The extension is associated with Wireshark so, we must destroy this!
DeleteRegKey HKCR $EXTENSION
- DetailPrint "Deregistered extension $EXTENSION"
+ DetailPrint "Deregistered file type: $EXTENSION"
un.Disassociate.end:
Pop $EXTENSION
${Loop}
diff --git a/packaging/nsis/wireshark.nsi b/packaging/nsis/wireshark.nsi
index bad244981e..88f02aad21 100644
--- a/packaging/nsis/wireshark.nsi
+++ b/packaging/nsis/wireshark.nsi
@@ -171,6 +171,7 @@ ShowInstDetails show
; ============================================================================
Var EXTENSION
+; http://msdn.microsoft.com/en-us/library/windows/desktop/cc144148.aspx
Function Associate
Push $R0
!insertmacro PushFileExtensions
@@ -185,7 +186,7 @@ Function Associate
Associate.doRegister:
;The extension is not associated to any program, we can do the link
WriteRegStr HKCR $EXTENSION "" ${WIRESHARK_ASSOC}
- DetailPrint "Registered extension $EXTENSION"
+ DetailPrint "Registered file type: $EXTENSION"
Associate.end:
Pop $EXTENSION