aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--builtin/fetch.c5
-rwxr-xr-xt/t5801-remote-helpers.sh2
2 files changed, 4 insertions, 3 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c
index 0bf8fa7030..e485d429c9 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -237,6 +237,7 @@ static int will_fetch(struct ref **head, const unsigned char *sha1)
struct refname_hash_entry {
struct hashmap_entry ent; /* must be the first member */
struct object_id oid;
+ int ignore;
char refname[FLEX_ARRAY];
};
@@ -287,7 +288,7 @@ static int refname_hash_exists(struct hashmap *map, const char *refname)
static void clear_item(struct refname_hash_entry *item)
{
- oidclr(&item->oid);
+ item->ignore = 1;
}
static void find_non_local_tags(const struct ref *refs,
@@ -373,7 +374,7 @@ static void find_non_local_tags(const struct ref *refs,
BUG("unseen remote ref?");
/* Unless we have already decided to ignore this item... */
- if (is_null_oid(&item->oid))
+ if (item->ignore)
continue;
rm = alloc_ref(item->refname);
diff --git a/t/t5801-remote-helpers.sh b/t/t5801-remote-helpers.sh
index 4138354e00..1829ef29c7 100755
--- a/t/t5801-remote-helpers.sh
+++ b/t/t5801-remote-helpers.sh
@@ -301,7 +301,7 @@ test_expect_success 'fetch url' '
compare_refs server HEAD local FETCH_HEAD
'
-test_expect_failure 'fetch tag' '
+test_expect_success 'fetch tag' '
(cd server &&
git tag v1.0
) &&