diff options
author | Ronnie Sahlberg <sahlberg@google.com> | 2014-07-15 16:02:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-16 13:06:41 -0700 |
commit | e7e0f26eb64de205acaac63da89f47aab78ba229 (patch) | |
tree | 2f31e5198ae6e3b1d6a13f093ba8fe314b359114 /builtin | |
parent | ebc5da3208824e25a89672a3b91bd13629b215fe (diff) | |
download | git-e7e0f26eb64de205acaac63da89f47aab78ba229.tar.gz |
refs.c: add a public is_branch functionrs/unify-is-branch
Both refs.c and fsck.c have their own private copies of the is_branch function.
Delete the is_branch function from fsck.c and make the version in refs.c
public.
Signed-off-by: Ronnie Sahlberg <sahlberg@google.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/fsck.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/builtin/fsck.c b/builtin/fsck.c index 8aadca160e..d42a27da89 100644 --- a/builtin/fsck.c +++ b/builtin/fsck.c @@ -481,11 +481,6 @@ static int fsck_handle_reflog(const char *logname, const unsigned char *sha1, in return 0; } -static int is_branch(const char *refname) -{ - return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/"); -} - static int fsck_handle_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data) { struct object *obj; |