summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-07-01 02:07:01 -0400
committerJohannes Schindelin <johannes.schindelin@gmx.de>2016-07-01 15:38:04 +0200
commitf7b8cb849eb35c12c552101841fdfaf8b122918b (patch)
treeba4caef0ca70be555b766585a386689099969a11
parentbe0c7fe23075541ba8715fee0fe1c605d2cbdcec (diff)
downloadgit-js/common-main.tar.gz
common-main: call git_setup_gettext()js/common-main
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>
-rw-r--r--common-main.c2
-rw-r--r--daemon.c2
-rw-r--r--fast-import.c2
-rw-r--r--git.c2
-rw-r--r--http-backend.c2
-rw-r--r--http-fetch.c2
-rw-r--r--http-push.c2
-rw-r--r--imap-send.c2
-rw-r--r--remote-curl.c2
-rw-r--r--shell.c2
-rw-r--r--show-index.c2
-rw-r--r--upload-pack.c2
12 files changed, 2 insertions, 22 deletions
diff --git a/common-main.c b/common-main.c
index 09ef0d5b0c..44a29e8b13 100644
--- a/common-main.c
+++ b/common-main.c
@@ -31,6 +31,8 @@ int main(int argc, const char **argv)
*/
sanitize_stdfds();
+ git_setup_gettext();
+
argv[0] = git_extract_argv0_path(argv[0]);
restore_sigpipe_to_default();
diff --git a/daemon.c b/daemon.c
index 8646f33184..e647254c19 100644
--- a/daemon.c
+++ b/daemon.c
@@ -1201,8 +1201,6 @@ int cmd_main(int argc, const char **argv)
struct credentials *cred = NULL;
int i;
- git_setup_gettext();
-
for (i = 1; i < argc; i++) {
const char *arg = argv[i];
const char *v;
diff --git a/fast-import.c b/fast-import.c
index f12cd00e09..bf53ac95da 100644
--- a/fast-import.c
+++ b/fast-import.c
@@ -3448,8 +3448,6 @@ int cmd_main(int argc, const char **argv)
{
unsigned int i;
- git_setup_gettext();
-
if (argc == 2 && !strcmp(argv[1], "-h"))
usage(fast_import_usage);
diff --git a/git.c b/git.c
index ccb24fd26a..0f1937fd0c 100644
--- a/git.c
+++ b/git.c
@@ -618,8 +618,6 @@ int cmd_main(int argc, const char **argv)
if (!cmd)
cmd = "git-help";
- git_setup_gettext();
-
trace_command_performance(argv);
/*
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);
diff --git a/http-fetch.c b/http-fetch.c
index 244cd0db5d..3b556d6619 100644
--- a/http-fetch.c
+++ b/http-fetch.c
@@ -22,8 +22,6 @@ int cmd_main(int argc, const char **argv)
int get_verbosely = 0;
int get_recover = 0;
- git_setup_gettext();
-
while (arg < argc && argv[arg][0] == '-') {
if (argv[arg][1] == 't') {
get_tree = 1;
diff --git a/http-push.c b/http-push.c
index 3a5fecfaa1..dacada9094 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++;
diff --git a/imap-send.c b/imap-send.c
index 125b2183a7..9cbe27fcd4 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -1500,8 +1500,6 @@ int cmd_main(int argc, const char **argv)
int total;
int nongit_ok;
- git_setup_gettext();
-
setup_git_directory_gently(&nongit_ok);
git_imap_config();
diff --git a/remote-curl.c b/remote-curl.c
index d39f4cf8a6..6b83b7783e 100644
--- a/remote-curl.c
+++ b/remote-curl.c
@@ -989,8 +989,6 @@ int cmd_main(int argc, const char **argv)
struct strbuf buf = STRBUF_INIT;
int nongit;
- git_setup_gettext();
-
setup_git_directory_gently(&nongit);
if (argc < 2) {
error("remote-curl: usage: git remote-curl <remote> [<url>]");
diff --git a/shell.c b/shell.c
index 5e70acb9a6..464ee1a201 100644
--- a/shell.c
+++ b/shell.c
@@ -145,8 +145,6 @@ int cmd_main(int argc, const char **argv)
struct commands *cmd;
int count;
- git_setup_gettext();
-
/*
* Special hack to pretend to be a CVS server
*/
diff --git a/show-index.c b/show-index.c
index 575f9c5894..1ead41e211 100644
--- a/show-index.c
+++ b/show-index.c
@@ -11,8 +11,6 @@ int cmd_main(int argc, const char **argv)
unsigned int version;
static unsigned int top_index[256];
- git_setup_gettext();
-
if (argc != 1)
usage(show_index_usage);
if (fread(top_index, 2 * 4, 1, stdin) != 1)
diff --git a/upload-pack.c b/upload-pack.c
index 681fd2f2bc..8769b1b8ff 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -836,8 +836,6 @@ int cmd_main(int argc, const char **argv)
OPT_END()
};
- git_setup_gettext();
-
packet_trace_identity("upload-pack");
check_replace_refs = 0;