diff options
author | Jeff King <peff@peff.net> | 2016-07-01 02:07:01 -0400 |
---|---|---|
committer | Johannes Schindelin <johannes.schindelin@gmx.de> | 2016-07-02 09:55:47 +0200 |
commit | 25922046ff726725d4ab8933968caebc61c66f70 (patch) | |
tree | e55a04bc5495447857bc9a8b7e36fa41602915f6 /http-backend.c | |
parent | 55888716a7aae0224049a145d6213b8408ccdd7f (diff) | |
download | git-js/common-main-maint.tar.gz |
common-main: call git_setup_gettext()js/common-main-maint
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>
Diffstat (limited to 'http-backend.c')
-rw-r--r-- | http-backend.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/http-backend.c b/http-backend.c index 5375cbc83c..0d59499a51 100644 --- a/http-backend.c +++ b/http-backend.c @@ -640,8 +640,6 @@ int cmd_main(int argc, const char **argv) char *cmd_arg = NULL; int i; - git_setup_gettext(); - set_die_routine(die_webcgi); set_die_is_recursing_routine(die_webcgi_recursing); |