summaryrefslogtreecommitdiff
path: root/include/git2/remote.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2013-10-30 15:09:32 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2013-10-30 15:15:54 +0100
commit97d32abb492f7830f6e26719ce558429f6377b73 (patch)
treed3f7a92d4c95a455412c849e3ddeca4c8dea6b15 /include/git2/remote.h
parent04e0c2b24db73dd5101738605dc4fe90d479aa08 (diff)
downloadlibgit2-97d32abb492f7830f6e26719ce558429f6377b73.tar.gz
Remove leftover function declaration
Diffstat (limited to 'include/git2/remote.h')
-rw-r--r--include/git2/remote.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/git2/remote.h b/include/git2/remote.h
index f4cd1cbfa..b9cf86ef1 100644
--- a/include/git2/remote.h
+++ b/include/git2/remote.h
@@ -357,21 +357,6 @@ GIT_EXTERN(int) git_remote_list(git_strarray *out, git_repository *repo);
GIT_EXTERN(void) git_remote_check_cert(git_remote *remote, int check);
/**
- * Set a credentials acquisition callback for this remote. If the remote is
- * not available for anonymous access, then you must set this callback in order
- * to provide credentials to the transport at the time of authentication
- * failure so that retry can be performed.
- *
- * @param remote the remote to configure
- * @param cred_acquire_cb The credentials acquisition callback to use (defaults
- * to NULL)
- */
-GIT_EXTERN(void) git_remote_set_cred_acquire_cb(
- git_remote *remote,
- git_cred_acquire_cb cred_acquire_cb,
- void *payload);
-
-/**
* Sets a custom transport for the remote. The caller can use this function
* to bypass the automatic discovery of a transport by URL scheme (i.e.
* http://, https://, git://) and supply their own transport to be used