summaryrefslogtreecommitdiff
path: root/fetch-pack.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-11-11 13:56:31 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-11-11 13:56:31 -0800
commit371811751dcdf9c12ccd99299aaca4f59e768af2 (patch)
tree5d5285c452e328fd25da5dba3f93d0b41d433ff1 /fetch-pack.c
parentMerge branch 'ps/common-info-doc' (diff)
parentfetch-pack.c: correct command at the beginning of an error message (diff)
downloadtgif-371811751dcdf9c12ccd99299aaca4f59e768af2.tar.xz
Merge branch 'rt/fetch-pack-error-message-fix'
An error message in fetch-pack executable that was newly marked for translation was misspelt, which has been fixed. * rt/fetch-pack-error-message-fix: fetch-pack.c: correct command at the beginning of an error message
Diffstat (limited to 'fetch-pack.c')
-rw-r--r--fetch-pack.c2
1 files changed, 1 insertions, 1 deletions
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,