summaryrefslogtreecommitdiff
path: root/src/remote.c
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2020-01-30 10:40:44 +0100
committerGitHub <noreply@github.com>2020-01-30 10:40:44 +0100
commitaa4cd778b97d7271aa0ad12a4f9d492c443d5935 (patch)
treeda7cc7d3a92f8e1c06e47876b574fc86cbd73eaf /src/remote.c
parentf9b41a6600f35f36ba5381f355355c303bd05df1 (diff)
parent3f54ba8b61869f42b2bbd1a60091a0be640bc8fc (diff)
downloadlibgit2-aa4cd778b97d7271aa0ad12a4f9d492c443d5935.tar.gz
Merge pull request #5336 from libgit2/ethomson/credtype
cred: change enum to git_credential_t and GIT_CREDENTIAL_*
Diffstat (limited to 'src/remote.c')
-rw-r--r--src/remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.c b/src/remote.c
index e65d036e3..740dd9434 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -710,7 +710,7 @@ int git_remote__connect(git_remote *remote, git_direction direction, const git_r
int flags = GIT_TRANSPORTFLAGS_NONE;
int error;
void *payload = NULL;
- git_cred_acquire_cb credentials = NULL;
+ git_credential_acquire_cb credentials = NULL;
git_transport_cb transport = NULL;
assert(remote);