diff options
author | Jeff King <peff@peff.net> | 2016-07-01 02:07:01 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-01 15:09:10 -0700 |
commit | 5ce5f5fa5ad3de3c36fdd00df2d5c045ad1d7f04 (patch) | |
tree | 980b0f34b834b35e6a9c8bc97d1aef01cf9e7a79 /http-push.c | |
parent | 12e0437f237ad72df3a2f3f8b067cf8097d792f1 (diff) | |
download | git-5ce5f5fa5ad3de3c36fdd00df2d5c045ad1d7f04.tar.gz |
common-main: call git_setup_gettext()
This should be part of every program, as otherwise users do
not get translated error messages. However, some external
commands forgot to do so (e.g., git-credential-store). This
fixes them, and eliminates the repeated code in programs
that did remember to use it.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/http-push.c b/http-push.c index acfcd1f1ad..366794d707 100644 --- a/http-push.c +++ b/http-push.c @@ -1709,8 +1709,6 @@ int cmd_main(int argc, const char **argv) int new_refs; struct ref *ref, *local_refs; - git_setup_gettext(); - repo = xcalloc(1, sizeof(*repo)); argv++; |