Add git_cred_acquire_cb payload to winhttp transport
diff --git a/src/transports/winhttp.c b/src/transports/winhttp.c
index fe4b802..1bb5bd9 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);