From 9748e75d92dc9c52402be03fa5b09e5a1f725d01 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Fri, 12 Mar 2010 19:59:16 +1100 Subject: [PATCH] Win32 uninstaller: MD5 checksums need string comparison rather than int comparison --- 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 -- 2.30.2