Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-11-29 10:28:39 +0300
committerJunio C Hamano <gitster@pobox.com>2018-11-29 10:28:39 +0300
commit9ec8af6c9e91443dd7178421ff1bc993282db94b (patch)
treee10332345afdb39aa5475fc6b587112e34ee40ee /transport-helper.c
parenta1598010f775d82b5adf12c29d0f5bc9b41434c6 (diff)
parent739fb7167d6b0880f814887efe5b26290b44b14c (diff)
Merge branch 'nd/n18n-fix'
* nd/n18n-fix: transport-helper.c: do not translate a string twice
Diffstat (limited to 'transport-helper.c')
-rw-r--r--transport-helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/transport-helper.c b/transport-helper.c
index 7213fa0d32..bf225c698f 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -573,7 +573,7 @@ static int run_connect(struct transport *transport, struct strbuf *cmdbuf)
fprintf(stderr, "Debug: Falling back to dumb "
"transport.\n");
} else {
- die(_(_("unknown response to connect: %s")),
+ die(_("unknown response to connect: %s"),
cmdbuf->buf);
}