fetch-pack.c: correct command at the beginning of an error message
authorRalf Thielow <ralf.thielow@gmail.com>
Fri, 11 Nov 2016 17:21:00 +0000 (18:21 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 11 Nov 2016 21:28:39 +0000 (13:28 -0800)
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>
fetch-pack.c
index cb45c346ea97059b66642b458c7ca372ece67aaa..601f0779a1903a2b860412e3404e4ea8e4bce573 100644 (file)
@@ -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,