Skip to content

Commit

Permalink
Use a single function to match names against patterns
Browse files Browse the repository at this point in the history
This will help when the matching changes.

Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Daniel Barkalow authored and Junio C Hamano committed Mar 7, 2009
1 parent 689f039 commit a3c8423
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,12 @@ int remote_has_url(struct remote *remote, const char *url)
return 0;
}

static int match_name_with_pattern(const char *key, const char *name)
{
int ret = !prefixcmp(key, name);
return ret;
}

int remote_find_tracking(struct remote *remote, struct refspec *refspec)
{
int find_src = refspec->src == NULL;
Expand All @@ -742,7 +748,7 @@ int remote_find_tracking(struct remote *remote, struct refspec *refspec)
if (!fetch->dst)
continue;
if (fetch->pattern) {
if (!prefixcmp(needle, key)) {
if (match_name_with_pattern(key, needle)) {
*result = xmalloc(strlen(value) +
strlen(needle) -
strlen(key) + 1);
Expand Down Expand Up @@ -1020,7 +1026,7 @@ static const struct refspec *check_pattern_match(const struct refspec *rs,
continue;
}

if (rs[i].pattern && !prefixcmp(src->name, rs[i].src))
if (rs[i].pattern && match_name_with_pattern(rs[i].src, src->name))
return rs + i;
}
if (matching_refs != -1)
Expand Down Expand Up @@ -1160,7 +1166,7 @@ static struct ref *get_expanded_map(const struct ref *remote_refs,
for (ref = remote_refs; ref; ref = ref->next) {
if (strchr(ref->name, '^'))
continue; /* a dereference item */
if (!prefixcmp(ref->name, refspec->src)) {
if (match_name_with_pattern(refspec->src, ref->name)) {
const char *match;
struct ref *cpy = copy_ref(ref);
match = ref->name + remote_prefix_len;
Expand Down

0 comments on commit a3c8423

Please sign in to comment.