aboutsummaryrefslogtreecommitdiff
path: root/fetch-pack.c
diff options
context:
space:
mode:
authorRalf Thielow <ralf.thielow@gmail.com>2016-11-11 18:21:00 +0100
committerJunio C Hamano <gitster@pobox.com>2016-11-11 13:28:39 -0800
commitdfbfb9f3771e9070f239458dd2e3b535b64c4012 (patch)
tree7ba73c89ec2798a448bf6220d35a8fe988330608 /fetch-pack.c
parent0538b84027a8aba7e8b805e3ec8fceb3990023e5 (diff)
downloadgit-dfbfb9f3771e9070f239458dd2e3b535b64c4012.tar.gz
git-dfbfb9f3771e9070f239458dd2e3b535b64c4012.tar.xz
fetch-pack.c: correct command at the beginning of an error message
One error message in fetch-pack.c uses 'git fetch_pack' at the beginning which is not a git command. Use 'git fetch-pack' instead. Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fetch-pack.c')
-rw-r--r--fetch-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetch-pack.c b/fetch-pack.c
index cb45c346e..601f0779a 100644
--- a/fetch-pack.c
+++ b/fetch-pack.c
@@ -240,7 +240,7 @@ static enum ack_type get_ack(int fd, unsigned char *result_sha1)
return ACK;
}
}
- die(_("git fetch_pack: expected ACK/NAK, got '%s'"), line);
+ die(_("git fetch-pack: expected ACK/NAK, got '%s'"), line);
}
static void send_request(struct fetch_pack_args *args,