Browse Source

[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>
maint
Junio C Hamano 20 years ago committed by Linus Torvalds
parent
commit
1038f0c0a1
  1. 2
      pack-check.c

2
pack-check.c

@ -58,7 +58,7 @@ static int verify_packfile(struct packed_git *p) @@ -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;

Loading…
Cancel
Save