aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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