소스 검색

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

Signed-off-by: Felix Fietkau <[email protected]>
Felix Fietkau 8 년 전
부모
커밋
2fd1503378
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scripts/download.pl

+ 1 - 1
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;
 		}