diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-07-06 10:02:57 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-06 10:02:57 -0700 |
commit | de61cebde72a15b85b6e6a06ef4c3614b6afdac8 (patch) | |
tree | 7d0e816e7e7718a17c07b3b73b753710b879c7c5 /http-backend.c | |
parent | 05219a1276341e72d8082d76b7f5ed394b7437a4 (diff) | |
parent | 08aade7080ef7955eb356c6590187be3b55dcbcd (diff) | |
download | git-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 'http-backend.c')
-rw-r--r-- | http-backend.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/http-backend.c b/http-backend.c index 214881459d..0d59499a51 100644 --- a/http-backend.c +++ b/http-backend.c @@ -632,7 +632,7 @@ static struct service_cmd { {"POST", "/git-receive-pack$", service_rpc} }; -int main(int argc, char **argv) +int cmd_main(int argc, const char **argv) { char *method = getenv("REQUEST_METHOD"); char *dir; @@ -640,9 +640,6 @@ int main(int argc, char **argv) char *cmd_arg = NULL; int i; - git_setup_gettext(); - - git_extract_argv0_path(argv[0]); set_die_routine(die_webcgi); set_die_is_recursing_routine(die_webcgi_recursing); |