[PATCH] Typofix an error message in pack-check.c

The current error message does not make any sense.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Junio C Hamano 2005-07-07 15:12:20 -07:00 committed by Linus Torvalds
parent 776566000f
commit 1038f0c0a1

View file

@ -58,7 +58,7 @@ static int verify_packfile(struct packed_git *p)
continue;
}
if (check_sha1_signature(sha1, data, size, type)) {
err = error("cannot packed %s from %s corrupt",
err = error("packed %s from %s is corrupt",
sha1_to_hex(sha1), p->pack_name);
free(data);
continue;