X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-http-fetch.c;h=3a062487a7eacd01ed824b46a9124dd343cd2e60;hb=a7b3269c4b9acde052d75b6dc54c8f869b77eb44;hp=299093ff9134f517e53b5105ec356e6575df6214;hpb=f830d45b9fdb04a5d79c25bb3a3d891d8d3b58e9;p=git.git diff --git a/builtin-http-fetch.c b/builtin-http-fetch.c index 299093ff9..3a062487a 100644 --- a/builtin-http-fetch.c +++ b/builtin-http-fetch.c @@ -18,7 +18,7 @@ int cmd_http_fetch(int argc, const char **argv, const char *prefix) int get_verbosely = 0; int get_recover = 0; - git_config(git_default_config); + git_config(git_default_config, NULL); while (arg < argc && argv[arg][0] == '-') { if (argv[arg][1] == 't') { @@ -59,7 +59,7 @@ int cmd_http_fetch(int argc, const char **argv, const char *prefix) url = rewritten_url; } - walker = get_http_walker(url); + walker = get_http_walker(url, NULL); walker->get_tree = get_tree; walker->get_history = get_history; walker->get_all = get_all;