summaryrefslogtreecommitdiff
path: root/src/fetch.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2013-09-16 04:20:05 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2013-10-02 06:41:42 +0200
commitd31402a3fc4aa1b7d48ba43fd3bb072e7d69a527 (patch)
treecc8eb1e1801c98c25349951d6cd3667d94d9ea19 /src/fetch.h
parent71e33d2649f990086237a6cd0fdb7f7d6f742b51 (diff)
downloadlibgit2-d31402a3fc4aa1b7d48ba43fd3bb072e7d69a527.tar.gz
remote: put the _download() callback with the others
The text progress and update_tips callbacks are already part of the struct, which was meant to unify the callback setup, but the download one was left out.
Diffstat (limited to 'src/fetch.h')
-rw-r--r--src/fetch.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/fetch.h b/src/fetch.h
index 059251d04..9605da1b5 100644
--- a/src/fetch.h
+++ b/src/fetch.h
@@ -11,10 +11,7 @@
int git_fetch_negotiate(git_remote *remote);
-int git_fetch_download_pack(
- git_remote *remote,
- git_transfer_progress_callback progress_cb,
- void *progress_payload);
+int git_fetch_download_pack(git_remote *remote);
int git_fetch__download_pack(
git_transport *t,