From 5d7cd57f9950fca5c60176c5b5a3673358386a05 Mon Sep 17 00:00:00 2001 From: Matt Burke Date: Tue, 8 Sep 2015 14:15:29 -0400 Subject: [PATCH] Update another call to git_remote_connect --- examples/network/ls-remote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/network/ls-remote.c b/examples/network/ls-remote.c index 21026562f..c9da79f5f 100644 --- a/examples/network/ls-remote.c +++ b/examples/network/ls-remote.c @@ -26,7 +26,7 @@ static int use_remote(git_repository *repo, char *name) */ callbacks.credentials = cred_acquire_cb; - error = git_remote_connect(remote, GIT_DIRECTION_FETCH, &callbacks); + error = git_remote_connect(remote, GIT_DIRECTION_FETCH, &callbacks, NULL); if (error < 0) goto cleanup;