diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-12-19 16:05:59 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-19 16:05:59 -0800 |
commit | 1d3a035d6d48bfa870b6ebe7c59f12b66e3a1b1c (patch) | |
tree | 58d0280090c8c26915a20c894a84b7a951ac8004 /http-push.c | |
parent | b3ae9d8e57166c771926e3f55555bf248b71202a (diff) | |
parent | a4ddbc33d7906f0e10c68c140a9a1003d9715a77 (diff) | |
download | git-1d3a035d6d48bfa870b6ebe7c59f12b66e3a1b1c.tar.gz |
Merge branch 'jk/maint-push-over-dav'
* jk/maint-push-over-dav:
http-push: enable "proactive auth"
t5540: test DAV push with authentication
Conflicts:
http.c
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c index edd553b7f6..cdfdd4f791 100644 --- a/http-push.c +++ b/http-push.c @@ -1820,7 +1820,7 @@ int main(int argc, char **argv) memset(remote_dir_exists, -1, 256); - http_init(NULL, repo->url); + http_init(NULL, repo->url, 1); #ifdef USE_CURL_MULTI is_running_queue = 0; |