diff options
author | Jeff King <peff@peff.net> | 2019-03-20 09:16:14 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-03-20 10:34:09 +0100 |
commit | 0f804b0bac39fb696ea74b8dd59549935ec9ca00 (patch) | |
tree | 394d187c972446e54d13da8f85873e9fbe9a3f81 /fetch-pack.h | |
parent | report_path_error(): drop unused prefix parameter (diff) | |
download | git-0f804b0bac39fb696ea74b8dd59549935ec9ca00.tar.xz git-0f804b0bac39fb696ea74b8dd59549935ec9ca00.zip |
fetch_pack(): drop unused parameters
We don't need the caller of fetch_pack() to pass in "dest", which is the
remote URL. Since ba227857d2 (Reduce the number of connects when
fetching, 2008-02-04), the caller is responsible for calling
git_connect() itself, and our "dest" parameter is unused.
That commit also started passing us the resulting "conn" child_process
from git_connect(). But likewise, we do not need do anything with it.
The descriptors in "fd" are enough for us, and the caller is responsible
for cleaning up "conn".
We can just drop both parameters.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fetch-pack.h')
-rw-r--r-- | fetch-pack.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fetch-pack.h b/fetch-pack.h index 43ec344d95..67f684229a 100644 --- a/fetch-pack.h +++ b/fetch-pack.h @@ -78,9 +78,8 @@ struct fetch_pack_args { * marked as such. */ struct ref *fetch_pack(struct fetch_pack_args *args, - int fd[], struct child_process *conn, + int fd[], const struct ref *ref, - const char *dest, struct ref **sought, int nr_sought, struct oid_array *shallow, |