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>
Ralf Thielow committed
Nov 11, 2016 at 18:21 UTC
dfbfb9f3771e9070f239458dd2e3b535b64c4012
1 file changed
+1
-1
fetch-pack.c
+1
-1
@@ -240,7 +240,7 @@ static enum ack_type get_ack(int fd, unsigned char *result_sha1)
240
return ACK;
241
}
242
}
243
- die(_("git fetch_pack: expected ACK/NAK, got '%s'"), line);
243
+ die(_("git fetch-pack: expected ACK/NAK, got '%s'"), line);
244
}
245
246
static void send_request(struct fetch_pack_args *args,