Skip to content

Commit

Permalink
get_ref_map(): rename local variables
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed Oct 24, 2013
1 parent 5b2515f commit f137a45
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions builtin/fetch.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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 */
Expand Down

0 comments on commit f137a45

Please sign in to comment.