summaryrefslogtreecommitdiff
path: root/refs.c
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-10-16 09:39:26 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-10-16 18:17:04 (GMT)
commit25a33b33424cd6c8e2c7db0f0c4b1ba01415ce38 (patch)
treeba2cf3052a24b462bd0290706e9fe7fecaa2d52e /refs.c
parent4755d7dff7a27f431493926541fd6aab2e860aa4 (diff)
downloadgit-25a33b33424cd6c8e2c7db0f0c4b1ba01415ce38.zip
git-25a33b33424cd6c8e2c7db0f0c4b1ba01415ce38.tar.gz
git-25a33b33424cd6c8e2c7db0f0c4b1ba01415ce38.tar.bz2
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>
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/refs.c b/refs.c
index e90c595..4e06745 100644
--- a/refs.c
+++ b/refs.c
@@ -1669,7 +1669,7 @@ int refs_read_raw_ref(struct ref_store *ref_store, const char *refname,
type, failure_errno);
}
-const char *refs_werrres_ref_unsafe(struct ref_store *refs,
+const char *refs_resolve_ref_unsafe(struct ref_store *refs,
const char *refname,
int resolve_flags,
struct object_id *oid,
@@ -1766,19 +1766,6 @@ const char *refs_werrres_ref_unsafe(struct ref_store *refs,
return NULL;
}
-const char *refs_resolve_ref_unsafe(struct ref_store *refs, const char *refname,
- int resolve_flags, struct object_id *oid,
- int *flags)
-{
- int failure_errno = 0;
- const char *refn;
- refn = refs_werrres_ref_unsafe(refs, refname, resolve_flags,
- oid, flags, &failure_errno);
- if (!refn)
- errno = failure_errno;
- return refn;
-}
-
/* backend functions */
int refs_init_db(struct strbuf *err)
{