diff options
author | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-08-03 22:03:57 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-08-18 02:34:08 +0200 |
commit | 44daec422950e0227a863021b6bf4fb8554b6c9c (patch) | |
tree | a5d4fd1811200714072b6c63a83df5a5b7a26afd /src/fetch.c | |
parent | da2902204b12e4ba2ad218590f0826a8b8c1badc (diff) | |
download | libgit2-44daec422950e0227a863021b6bf4fb8554b6c9c.tar.gz |
Bind the configuration and remotes to a repository
Configurations when taken from a repository and remotes should be
identifiable as coming from a particular repository. This allows us to
reduce the amount of variables that the user has to keep track of.
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src/fetch.c')
-rw-r--r-- | src/fetch.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/fetch.c b/src/fetch.c index 522625ef0..5dc044065 100644 --- a/src/fetch.c +++ b/src/fetch.c @@ -48,11 +48,12 @@ static int whn_cmp(const void *a, const void *b) * FIXME: we assume that the transport has been connected, enforce * that somehow, we also want to be called from _negotiate */ -int git_fetch_list_want(git_headarray *whn_list, git_repository *repo, git_remote *remote) +int git_fetch_list_want(git_headarray *whn_list, git_remote *remote) { git_vector list; git_headarray refs; git_transport *t = remote->transport; + git_repository *repo = remote->repo; const git_refspec *spec; int error; unsigned int i; @@ -136,13 +137,14 @@ cleanup: * them out. When we get an ACK we hide that commit and continue * traversing until we're done */ -int git_fetch_negotiate(git_headarray *list, git_repository *repo, git_remote *remote) +int git_fetch_negotiate(git_headarray *list, git_remote *remote) { git_revwalk *walk; int error; unsigned int i; git_reference *ref; git_strarray refs; + git_repository *repo = remote->repo; git_oid oid; /* Don't try to negotiate when we don't want anything */ @@ -195,7 +197,7 @@ cleanup: return error; } -int git_fetch_download_pack(git_remote *remote, git_repository *repo) +int git_fetch_download_pack(git_remote *remote) { - return git_transport_download_pack(remote->transport, repo); + return git_transport_download_pack(remote->transport, remote->repo); } |