refs: rename constant REF_NODEREF to REF_NO_DEREF
Even after working with this code for years, I still see this constant name as "ref node ref". Rename it to make it's meaning clearer. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
5ac95fee3d
commit
91774afcc3
@@ -312,7 +312,7 @@ static const char *parse_cmd_verify(struct ref_transaction *transaction,
|
||||
static const char *parse_cmd_option(struct strbuf *input, const char *next)
|
||||
{
|
||||
if (!strncmp(next, "no-deref", 8) && next[8] == line_termination)
|
||||
update_flags |= REF_NODEREF;
|
||||
update_flags |= REF_NO_DEREF;
|
||||
else
|
||||
die("option unknown: %s", next);
|
||||
return next + 8;
|
||||
@@ -427,7 +427,7 @@ int cmd_update_ref(int argc, const char **argv, const char *prefix)
|
||||
}
|
||||
|
||||
if (no_deref)
|
||||
flags = REF_NODEREF;
|
||||
flags = REF_NO_DEREF;
|
||||
if (delete)
|
||||
/*
|
||||
* For purposes of backwards compatibility, we treat
|
||||
|
||||
Reference in New Issue
Block a user