From: Felix Fietkau Date: Tue, 4 Apr 2017 09:44:22 +0000 (+0200) Subject: scripts/download.pl: fix error message on hash mismatch X-Git-Tag: v17.01.5~249 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=977db9f08aac4f8f769e0a5bf6e6a188621f2ee4 scripts/download.pl: fix error message on hash mismatch Signed-off-by: Felix Fietkau (cherry picked from commit 2fd15033783a9dfa84d2a43fb81ff222ab865407) --- diff --git a/scripts/download.pl b/scripts/download.pl index 7eb7c7ebce..3936f7659a 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -166,7 +166,7 @@ sub download $sum = $1; if ($sum ne $file_hash) { - print STDERR "MD5 sum of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n"; + print STDERR "Hash of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n"; cleanup(); return; }