aboutsummaryrefslogtreecommitdiffstats
path: root/remote-curl.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-07-06 10:02:57 -0700
committerJunio C Hamano <gitster@pobox.com>2016-07-06 10:02:57 -0700
commitde61cebde72a15b85b6e6a06ef4c3614b6afdac8 (patch)
tree7d0e816e7e7718a17c07b3b73b753710b879c7c5 /remote-curl.c
parent05219a1276341e72d8082d76b7f5ed394b7437a4 (diff)
parent08aade7080ef7955eb356c6590187be3b55dcbcd (diff)
downloadgit-de61cebde72a15b85b6e6a06ef4c3614b6afdac8.tar.gz
Merge branch 'jk/common-main-2.8' into jk/common-main
* jk/common-main-2.8: mingw: declare main()'s argv as const common-main: call git_setup_gettext() common-main: call restore_sigpipe_to_default() common-main: call sanitize_stdfds() common-main: call git_extract_argv0_path() add an extra level of indirection to main()
Diffstat (limited to 'remote-curl.c')
-rw-r--r--remote-curl.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/remote-curl.c b/remote-curl.c
index 672b382e5a..6b83b7783e 100644
--- a/remote-curl.c
+++ b/remote-curl.c
@@ -984,14 +984,11 @@ static void parse_push(struct strbuf *buf)
free(specs);
}
-int main(int argc, const char **argv)
+int cmd_main(int argc, const char **argv)
{
struct strbuf buf = STRBUF_INIT;
int nongit;
- git_setup_gettext();
-
- git_extract_argv0_path(argv[0]);
setup_git_directory_gently(&nongit);
if (argc < 2) {
error("remote-curl: usage: git remote-curl <remote> [<url>]");