diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2013-10-23 17:50:38 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-10-24 13:28:44 -0700 |
commit | f137a45e0db9823d386b18a7a9f5e0fc06c0b67d (patch) | |
tree | 077092630cb0ed38340e2779994ba810a4bd2f5e /builtin | |
parent | 5b2515f4007ce0fe3d61197905c41eee5a3d06c1 (diff) | |
download | git-f137a45e0db9823d386b18a7a9f5e0fc06c0b67d.tar.gz git-f137a45e0db9823d386b18a7a9f5e0fc06c0b67d.tar.xz |
get_ref_map(): rename local variables
Rename "refs" -> "refspecs" and "ref_count" -> "refspec_count" to
reduce confusion, because they describe an array of "struct refspec",
as opposed to the "struct ref" objects that are also used in this
function.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/fetch.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c index bd7a10164..2248abfd3 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -165,8 +165,8 @@ static void find_non_local_tags(struct transport *transport, struct ref ***tail); static struct ref *get_ref_map(struct transport *transport, - struct refspec *refs, int ref_count, int tags, - int *autotags) + struct refspec *refspecs, int refspec_count, + int tags, int *autotags) { int i; struct ref *rm; @@ -175,12 +175,12 @@ static struct ref *get_ref_map(struct transport *transport, const struct ref *remote_refs = transport_get_remote_refs(transport); - if (ref_count || tags == TAGS_SET) { + if (refspec_count || tags == TAGS_SET) { struct ref **old_tail; - for (i = 0; i < ref_count; i++) { - get_fetch_map(remote_refs, &refs[i], &tail, 0); - if (refs[i].dst && refs[i].dst[0]) + for (i = 0; i < refspec_count; i++) { + get_fetch_map(remote_refs, &refspecs[i], &tail, 0); + if (refspecs[i].dst && refspecs[i].dst[0]) *autotags = 1; } /* Merge everything on the command line, but not --tags */ |