From 59bccf33c4de1124f2effd5d4b1a9ef44babefd0 Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Mon, 10 Dec 2012 11:11:01 -0800 Subject: Add a payload param to git_cred_acquire_cb Fixes #1128. --- src/transports/local.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/transports/local.c') diff --git a/src/transports/local.c b/src/transports/local.c index 768daf3a8..53b24947c 100644 --- a/src/transports/local.c +++ b/src/transports/local.c @@ -143,6 +143,7 @@ static int local_connect( git_transport *transport, const char *url, git_cred_acquire_cb cred_acquire_cb, + void *cred_acquire_payload, int direction, int flags) { git_repository *repo; @@ -152,6 +153,7 @@ static int local_connect( git_buf buf = GIT_BUF_INIT; GIT_UNUSED(cred_acquire_cb); + GIT_UNUSED(cred_acquire_payload); t->url = git__strdup(url); GITERR_CHECK_ALLOC(t->url); -- cgit v1.2.1