summaryrefslogtreecommitdiff
path: root/fetch-pack.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2014-06-20 13:12:13 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2014-06-20 13:12:14 -0700
commitfa8203741e37d9d37098bfe260d7040e70f11023 (patch)
tree644cd4856e161d9c42ab804c88152fdd29771458 /fetch-pack.c
parentMerge branch 'jm/api-strbuf-doc' (diff)
parentUse starts_with() for C strings instead of memcmp() (diff)
downloadtgif-fa8203741e37d9d37098bfe260d7040e70f11023.tar.xz
Merge branch 'rs/more-starts-with'
* rs/more-starts-with: Use starts_with() for C strings instead of memcmp()
Diffstat (limited to 'fetch-pack.c')
-rw-r--r--fetch-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetch-pack.c b/fetch-pack.c
index eeee2bb7e0..b12bd4c59a 100644
--- a/fetch-pack.c
+++ b/fetch-pack.c
@@ -507,7 +507,7 @@ static void filter_refs(struct fetch_pack_args *args,
int keep = 0;
next = ref->next;
- if (!memcmp(ref->name, "refs/", 5) &&
+ if (starts_with(ref->name, "refs/") &&
check_refname_format(ref->name, 0))
; /* trash */
else {