summaryrefslogtreecommitdiff
path: root/src/transport.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/transport.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/transport.c')
-rw-r--r--src/transport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport.c b/src/transport.c
index b05833433..1bd0c4e9e 100644
--- a/src/transport.c
+++ b/src/transport.c
@@ -100,9 +100,9 @@ int git_transport_send_done(struct git_transport *transport)
return transport->send_done(transport);
}
-int git_transport_download_pack(git_transport *transport, git_repository *repo)
+int git_transport_download_pack(char **out, git_transport *transport, git_repository *repo)
{
- return transport->download_pack(transport, repo);
+ return transport->download_pack(out, transport, repo);
}
int git_transport_close(git_transport *transport)