diff options
author | Junio C Hamano <junkio@cox.net> | 2005-07-07 15:12:20 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-07 15:54:57 -0700 |
commit | 1038f0c0a1cde01f7e4af045d3a2acfea69b7c20 (patch) | |
tree | 51dba11cabf11df9e200688ba58d9daeb2ca8569 /pack-check.c | |
parent | 776566000ffed2ffed5783f2227bb36859c85005 (diff) | |
download | git-1038f0c0a1cde01f7e4af045d3a2acfea69b7c20.tar.gz |
[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>
Diffstat (limited to 'pack-check.c')
-rw-r--r-- | pack-check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-check.c b/pack-check.c index 916257f418..054b0131e9 100644 --- a/pack-check.c +++ b/pack-check.c @@ -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; |