From c832e754eb74643825a1afa9e1b98c47682ecf41 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Fri, 12 Mar 2010 19:59:16 +1100 Subject: Win32 uninstaller: MD5 checksums need string comparison rather than int comparison (bzr r9178) --- packaging/win32/inkscape.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/win32/inkscape.nsi b/packaging/win32/inkscape.nsi index 8074a480f..c7200772a 100755 --- a/packaging/win32/inkscape.nsi +++ b/packaging/win32/inkscape.nsi @@ -962,7 +962,7 @@ Section Uninstall ; do the uninstalling {{{ ${Else} md5dll::GetMD5File /NOUNLOAD $filename Pop $5 ;md5 of file - ${If} $3 = $5 + ${If} $3 == $5 StrCpy $3 1 ; yes ${ElseIf} $6 != never ; the md5 sums does not match so we ask -- cgit v1.2.3