summaryrefslogtreecommitdiff
path: root/src/fetch.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2011-08-04 17:50:50 +0200
committerVicent Marti <tanoku@gmail.com>2011-08-18 02:34:08 +0200
commit9cf0f287bb0ece488c9e0a169b3f806a4a9701eb (patch)
treeb68b2b1df2eabeac448a72fffcff49034a094c89 /src/fetch.c
parente1d88030687b2ccd652cfedd97714fb37367bbf9 (diff)
downloadlibgit2-9cf0f287bb0ece488c9e0a169b3f806a4a9701eb.tar.gz
Tell the user where the downloaded packfile is stored
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src/fetch.c')
-rw-r--r--src/fetch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fetch.c b/src/fetch.c
index b1da7a19f..7e671b799 100644
--- a/src/fetch.c
+++ b/src/fetch.c
@@ -199,7 +199,7 @@ cleanup:
return error;
}
-int git_fetch_download_pack(git_remote *remote)
+int git_fetch_download_pack(char **out, git_remote *remote)
{
- return git_transport_download_pack(remote->transport, remote->repo);
+ return git_transport_download_pack(out, remote->transport, remote->repo);
}