refs API: post-migration API renaming [1/2]
In preceding commits all callers of refs_resolve_ref_unsafe() were migrated to the transitory refs_werrres_ref_unsafe() function. As a first step in getting rid of it let's remove the old function from the public API (it went unused in a preceding commit). We then provide both a coccinelle rule to do the rename, and a macro to avoid breaking the existing callers. 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
4755d7dff7
commit
25a33b3342
22
refs.h
22
refs.h
@ -11,18 +11,6 @@ struct string_list;
|
||||
struct string_list_item;
|
||||
struct worktree;
|
||||
|
||||
/*
|
||||
* Callers should not inspect "errno" on failure, but rather pass in a
|
||||
* "failure_errno" parameter, on failure the "errno" will indicate the
|
||||
* type of failure encountered, but not necessarily one that came from
|
||||
* a syscall. We might have faked it up.
|
||||
*/
|
||||
const char *refs_werrres_ref_unsafe(struct ref_store *refs,
|
||||
const char *refname,
|
||||
int resolve_flags,
|
||||
struct object_id *oid,
|
||||
int *flags, int *failure_errno);
|
||||
|
||||
/*
|
||||
* Resolve a reference, recursively following symbolic refererences.
|
||||
*
|
||||
@ -70,16 +58,24 @@ const char *refs_werrres_ref_unsafe(struct ref_store *refs,
|
||||
* resolved. The function returns NULL for such ref names.
|
||||
* Caps and underscores refers to the special refs, such as HEAD,
|
||||
* FETCH_HEAD and friends, that all live outside of the refs/ directory.
|
||||
*
|
||||
* Callers should not inspect "errno" on failure, but rather pass in a
|
||||
* "failure_errno" parameter, on failure the "errno" will indicate the
|
||||
* type of failure encountered, but not necessarily one that came from
|
||||
* a syscall. We might have faked it up.
|
||||
*/
|
||||
#define RESOLVE_REF_READING 0x01
|
||||
#define RESOLVE_REF_NO_RECURSE 0x02
|
||||
#define RESOLVE_REF_ALLOW_BAD_NAME 0x04
|
||||
|
||||
#define refs_werrres_ref_unsafe(refs, refname, resolve_flags, oid, flags, failure_errno) \
|
||||
refs_resolve_ref_unsafe(refs, refname, resolve_flags, oid, flags, failure_errno)
|
||||
const char *refs_resolve_ref_unsafe(struct ref_store *refs,
|
||||
const char *refname,
|
||||
int resolve_flags,
|
||||
struct object_id *oid,
|
||||
int *flags);
|
||||
int *flags, int *failure_errno);
|
||||
|
||||
const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
|
||||
struct object_id *oid, int *flags);
|
||||
|
||||
|
Reference in New Issue
Block a user