diff options
author | Vicent Marti <vicent@github.com> | 2014-03-18 15:25:43 +0100 |
---|---|---|
committer | Vicent Marti <vicent@github.com> | 2014-03-18 15:25:43 +0100 |
commit | dd4c6962d736395b32c5ba775439c765631b4846 (patch) | |
tree | a6c2e43d025ad98937e00a9b05e7896faccb56b4 /include | |
parent | a7af1f7dd6929d2c903aa932ae5ea10d368e75d0 (diff) | |
parent | 1392418ea800bbd05dd4b38c5d5995df5bd3e177 (diff) | |
download | libgit2-dd4c6962d736395b32c5ba775439c765631b4846.tar.gz |
Merge pull request #2192 from phkelley/development
Seamless support for NTLM/Kerberos auth on Windows
Diffstat (limited to 'include')
-rw-r--r-- | include/git2/transport.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/git2/transport.h b/include/git2/transport.h index f2b0c630d..1f4d03eea 100644 --- a/include/git2/transport.h +++ b/include/git2/transport.h @@ -185,7 +185,8 @@ GIT_EXTERN(int) git_cred_default_new(git_cred **out); * remote url, or NULL if not included. * - allowed_types: A bitmask stating which cred types are OK to return. * - payload: The payload provided when specifying this callback. - * - returns 0 for success or non-zero to indicate an error + * - returns 0 for success, < 0 to indicate an error, > 0 to indicate + * no credential was acquired */ typedef int (*git_cred_acquire_cb)( git_cred **cred, |