aboutsummaryrefslogtreecommitdiffstats
path: root/cat-file.c
diff options
context:
space:
mode:
authorAlexey Nezhdanov <snake@penza-gsm.ru>2005-05-01 21:23:04 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-01 21:23:04 -0700
commitbab5583a49bff27c53f9ab22489b7faae21f607d (patch)
treef02cec371d16a9993bd7a9fc15b47928d2946ee5 /cat-file.c
parentb02a26cb877319f0367725ce87aead42488714cb (diff)
downloadgit-bab5583a49bff27c53f9ab22489b7faae21f607d.tar.gz
[PATCH] git-export complains about mising cat-file
Fixes bits leaved during name change. Signed-off-by: Alexey Nezhdanov <snake@penza-gsm.ru> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'cat-file.c')
-rw-r--r--cat-file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cat-file.c b/cat-file.c
index 6ff9d5576a..be41f51666 100644
--- a/cat-file.c
+++ b/cat-file.c
@@ -13,7 +13,7 @@ int main(int argc, char **argv)
unsigned long size;
if (argc != 3 || get_sha1(argv[2], sha1))
- usage("cat-file [-t | tagname] <sha1>");
+ usage("git-cat-file [-t | tagname] <sha1>");
if (!strcmp("-t", argv[1])) {
buf = read_sha1_file(sha1, type, &size);
@@ -28,7 +28,7 @@ int main(int argc, char **argv)
}
if (!buf)
- die("cat-file %s: bad file", argv[2]);
+ die("git-cat-file %s: bad file", argv[2]);
while (size > 0) {
long ret = write(1, buf, size);
@@ -38,9 +38,9 @@ int main(int argc, char **argv)
/* Ignore epipe */
if (errno == EPIPE)
break;
- die("cat-file: %s", strerror(errno));
+ die("git-cat-file: %s", strerror(errno));
} else if (!ret) {
- die("cat-file: disk full?");
+ die("git-cat-file: disk full?");
}
size -= ret;
buf += ret;