From: Ralf Thielow Date: Fri, 11 Nov 2016 17:21:00 +0000 (+0100) Subject: fetch-pack.c: correct command at the beginning of an error message X-Git-Tag: v2.11.0-rc1~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dfbfb9f3771e9070f239458dd2e3b535b64c4012;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- diff --git a/fetch-pack.c b/fetch-pack.c index cb45c346ea..601f0779a1 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,