Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-07-08 02:12:20 +0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-08 02:54:57 +0400
commit1038f0c0a1cde01f7e4af045d3a2acfea69b7c20 (patch)
tree51dba11cabf11df9e200688ba58d9daeb2ca8569 /pack-check.c
parent776566000ffed2ffed5783f2227bb36859c85005 (diff)
[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 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;