From 4cbe9a1be18338b7e223b42e6019c58181204123 Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Mon, 10 Dec 2012 11:48:20 -0800 Subject: [PATCH] Add git_cred_acquire_cb payload to winhttp transport --- src/transports/winhttp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transports/winhttp.c b/src/transports/winhttp.c index fe4b8025f..1bb5bd98f 100644 --- a/src/transports/winhttp.c +++ b/src/transports/winhttp.c @@ -447,7 +447,7 @@ replay: if (allowed_types && (!t->cred || 0 == (t->cred->credtype & allowed_types))) { - if (t->owner->cred_acquire_cb(&t->cred, t->owner->url, allowed_types) < 0) + if (t->owner->cred_acquire_cb(&t->cred, t->owner->url, allowed_types, t->owner->cred_acquire_payload) < 0) return -1; assert(t->cred);