summaryrefslogtreecommitdiff
path: root/pack-check.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-07-07 22:12:20 (GMT)
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-07 22:54:57 (GMT)
commit1038f0c0a1cde01f7e4af045d3a2acfea69b7c20 (patch)
tree51dba11cabf11df9e200688ba58d9daeb2ca8569 /pack-check.c
parent776566000ffed2ffed5783f2227bb36859c85005 (diff)
downloadgit-1038f0c0a1cde01f7e4af045d3a2acfea69b7c20.zip
git-1038f0c0a1cde01f7e4af045d3a2acfea69b7c20.tar.gz
git-1038f0c0a1cde01f7e4af045d3a2acfea69b7c20.tar.bz2
[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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pack-check.c b/pack-check.c
index 916257f..054b013 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;