aboutsummaryrefslogtreecommitdiff
path: root/refs.c
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2017-11-05 09:42:04 +0100
committerJunio C Hamano <gitster@pobox.com>2017-11-06 10:31:07 +0900
commit62c72d1fd0aa39429011b76ff5b1953a561e6581 (patch)
treee7a0ec4069b96dd8d02033319b3117944d3fdd29 /refs.c
parenta9bbbcec0d863d719dd4ae39fc2242b32c2008e7 (diff)
downloadgit-62c72d1fd0aa39429011b76ff5b1953a561e6581.tar.gz
git-62c72d1fd0aa39429011b76ff5b1953a561e6581.tar.xz
ref_transaction_add_update(): remove a check
We want to make `REF_ISPRUNING` internal to the files backend. For this to be possible, `ref_transaction_add_update()` mustn't know about it. So move the check that `REF_ISPRUNING` is only used with `REF_NODEREF` from this function to `files_transaction_prepare()`. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/refs.c b/refs.c
index 7c1e206e0..0d9a1348c 100644
--- a/refs.c
+++ b/refs.c
@@ -906,9 +906,6 @@ struct ref_update *ref_transaction_add_update(
if (transaction->state != REF_TRANSACTION_OPEN)
die("BUG: update called for transaction that is not open");
- if ((flags & REF_ISPRUNING) && !(flags & REF_NODEREF))
- die("BUG: REF_ISPRUNING set without REF_NODEREF");
-
FLEX_ALLOC_STR(update, refname, refname);
ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
transaction->updates[transaction->nr++] = update;