diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2017-05-22 16:17:53 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-23 14:29:56 +0900 |
commit | c1da06c6f1a77370341d93d80af027caa6a19a94 (patch) | |
tree | 3fffc240eeecfca3ddec0fe48c7c47678545e39c /refs/ref-cache.h | |
parent | refs_ref_iterator_begin(): handle `GIT_REF_PARANOIA` (diff) | |
download | tgif-c1da06c6f1a77370341d93d80af027caa6a19a94.tar.xz |
create_ref_entry(): remove `check_name` option
Only one caller was using it, so move the check to that caller.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs/ref-cache.h')
-rw-r--r-- | refs/ref-cache.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/refs/ref-cache.h b/refs/ref-cache.h index fbfee7ce79..794f000fd3 100644 --- a/refs/ref-cache.h +++ b/refs/ref-cache.h @@ -185,8 +185,7 @@ struct ref_entry *create_dir_entry(struct ref_cache *cache, int incomplete); struct ref_entry *create_ref_entry(const char *refname, - const struct object_id *oid, int flag, - int check_name); + const struct object_id *oid, int flag); /* * Return a pointer to a new `ref_cache`. Its top-level starts out |