Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Fix incorrect ref namespace check
[gitweb.git]
/
builtin
/
fetch.c
diff --git
a/builtin/fetch.c
b/builtin/fetch.c
index 8761a33b491ae8a9437d78247ef0808c0686486e..ea45cb0e8ed2b1b27ed709182ea9bcd271c91dae 100644
(file)
--- a/
builtin/fetch.c
+++ b/
builtin/fetch.c
@@
-574,7
+574,7
@@
static void find_non_local_tags(struct transport *transport,
for_each_ref(add_existing, &existing_refs);
for (ref = transport_get_remote_refs(transport); ref; ref = ref->next) {
- if (prefixcmp(ref->name, "refs/tags"))
+ if (prefixcmp(ref->name, "refs/tags
/
"))
continue;
/*