scripts/download.pl: fix error message on hash mismatch

Signed-off-by: Felix Fietkau <nbd@nbd.name>
(cherry picked from commit 2fd1503378)
This commit is contained in:
Felix Fietkau 2017-04-04 11:44:22 +02:00 committed by Jo-Philipp Wich
parent 7fb03d9610
commit 977db9f08a
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}