* [PATCH] fetch-pack.c: correct command at the beginning of an error message
@ 2016-11-11 17:21 Ralf Thielow
0 siblings, 0 replies; only message in thread
From: Ralf Thielow @ 2016-11-11 17:21 UTC (permalink / raw)
To: git; +Cc: gitster, Ralf Thielow
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>
---
fetch-pack.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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,
--
2.11.0.rc0.151.gf7463a1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-11-11 17:21 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-11 17:21 [PATCH] fetch-pack.c: correct command at the beginning of an error message Ralf Thielow
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).