refs/packet: add missing BUG() invocations to reflog callbacks
In e0cc8ac820
(packed_ref_store: make class into a subclass of
`ref_store`, 2017-06-23) a die() was added to packed_create_reflog(),
but not to any of the other reflog callbacks, let's do that.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
daab8a564f
commit
881aebffcf
@ -1600,6 +1600,7 @@ static int packed_for_each_reflog_ent(struct ref_store *ref_store,
|
|||||||
const char *refname,
|
const char *refname,
|
||||||
each_reflog_ent_fn fn, void *cb_data)
|
each_reflog_ent_fn fn, void *cb_data)
|
||||||
{
|
{
|
||||||
|
BUG("packed reference store does not support reflogs");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1608,12 +1609,14 @@ static int packed_for_each_reflog_ent_reverse(struct ref_store *ref_store,
|
|||||||
each_reflog_ent_fn fn,
|
each_reflog_ent_fn fn,
|
||||||
void *cb_data)
|
void *cb_data)
|
||||||
{
|
{
|
||||||
|
BUG("packed reference store does not support reflogs");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int packed_reflog_exists(struct ref_store *ref_store,
|
static int packed_reflog_exists(struct ref_store *ref_store,
|
||||||
const char *refname)
|
const char *refname)
|
||||||
{
|
{
|
||||||
|
BUG("packed reference store does not support reflogs");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1627,6 +1630,7 @@ static int packed_create_reflog(struct ref_store *ref_store,
|
|||||||
static int packed_delete_reflog(struct ref_store *ref_store,
|
static int packed_delete_reflog(struct ref_store *ref_store,
|
||||||
const char *refname)
|
const char *refname)
|
||||||
{
|
{
|
||||||
|
BUG("packed reference store does not support reflogs");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1638,6 +1642,7 @@ static int packed_reflog_expire(struct ref_store *ref_store,
|
|||||||
reflog_expiry_cleanup_fn cleanup_fn,
|
reflog_expiry_cleanup_fn cleanup_fn,
|
||||||
void *policy_cb_data)
|
void *policy_cb_data)
|
||||||
{
|
{
|
||||||
|
BUG("packed reference store does not support reflogs");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user