From: Junio C Hamano Date: Thu, 14 Jul 2005 03:26:54 +0000 (-0700) Subject: [PATCH] clone-pack: Typofix in the error message. X-Git-Tag: v0.99.1~33 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=fd7791103078a63d19a1cb7fd7756e7cee046f07;p=git.git [PATCH] clone-pack: Typofix in the error message. Cleans a small cut-and-paste mistake. Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- diff --git a/clone-pack.c b/clone-pack.c index 064ec696..2aa52208 100644 --- a/clone-pack.c +++ b/clone-pack.c @@ -30,7 +30,7 @@ static struct ref *get_remote_refs(int fd, int nr_match, char **match) if (line[len-1] == '\n') line[--len] = 0; if (len < 42 || get_sha1_hex(line, sha1)) - die("git-fetch-pack: protocol error - expected ref descriptor, got '%s¤'", line); + die("git-clone-pack: protocol error - expected ref descriptor, got '%s'", line); refname = line+41; len = len-40; if (nr_match && !path_match(refname, nr_match, match))