diff options
author | Patrick Steinhardt <ps@pks.im> | 2020-01-30 10:40:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 10:40:44 +0100 |
commit | aa4cd778b97d7271aa0ad12a4f9d492c443d5935 (patch) | |
tree | da7cc7d3a92f8e1c06e47876b574fc86cbd73eaf /src/remote.c | |
parent | f9b41a6600f35f36ba5381f355355c303bd05df1 (diff) | |
parent | 3f54ba8b61869f42b2bbd1a60091a0be640bc8fc (diff) | |
download | libgit2-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.c | 2 |
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); |