diff options
author | Jeff King <peff@peff.net> | 2007-11-18 02:13:10 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-18 02:34:34 -0800 |
commit | cda69f481db510e2a3f0ca8a0f4b54123c799416 (patch) | |
tree | 38cb123ef8297aef85b11759e1dbb074ac124347 | |
parent | Fix warning about bitfield in struct ref (diff) | |
download | tgif-cda69f481db510e2a3f0ca8a0f4b54123c799416.tar.xz |
make "find_ref_by_name" a public function
This was a static in remote.c, but is generally useful.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | cache.h | 2 | ||||
-rw-r--r-- | refs.c | 8 | ||||
-rw-r--r-- | remote.c | 8 |
3 files changed, 10 insertions, 8 deletions
@@ -514,6 +514,8 @@ struct ref { #define REF_HEADS (1u << 1) #define REF_TAGS (1u << 2) +extern struct ref *find_ref_by_name(struct ref *list, const char *name); + #define CONNECT_VERBOSE (1u << 0) extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags); extern int finish_connect(struct child_process *conn); @@ -1445,3 +1445,11 @@ int update_ref(const char *action, const char *refname, } return 0; } + +struct ref *find_ref_by_name(struct ref *list, const char *name) +{ + for ( ; list; list = list->next) + if (!strcmp(list->name, name)) + return list; + return NULL; +} @@ -696,14 +696,6 @@ static int match_explicit_refs(struct ref *src, struct ref *dst, return -errs; } -static struct ref *find_ref_by_name(struct ref *list, const char *name) -{ - for ( ; list; list = list->next) - if (!strcmp(list->name, name)) - return list; - return NULL; -} - static const struct refspec *check_pattern_match(const struct refspec *rs, int rs_nr, const struct ref *src) |