diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-01-02 11:14:40 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-02 11:20:09 -0800 |
commit | 257f3020f69f3222cdefc1d84b148fb35b2c4f5b (patch) | |
tree | 4cc7eddab646adc89a5e540f28f2d98abe92ca0b /refs.c | |
parent | 321b1842dceb94bbaa00b9f75c7c2fe6bf6fad1c (diff) | |
download | git-257f3020f69f3222cdefc1d84b148fb35b2c4f5b.tar.gz |
Update callers of check_ref_format()
This updates send-pack and fast-import to use symbolic constants
for checking the return values from check_ref_format(), and also
futureproof the logic in lock_any_ref_for_update() to explicitly
name the case that is usually considered an error but is Ok for
this particular use.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.c')
-rw-r--r-- | refs.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -822,10 +822,10 @@ struct ref_lock *lock_ref_sha1(const char *ref, const unsigned char *old_sha1) struct ref_lock *lock_any_ref_for_update(const char *ref, const unsigned char *old_sha1, int flags) { switch (check_ref_format(ref)) { - case CHECK_REF_FORMAT_ERROR: - case CHECK_REF_FORMAT_WILDCARD: - return NULL; default: + return NULL; + case 0: + case CHECK_REF_FORMAT_ONELEVEL: return lock_ref_sha1_basic(ref, old_sha1, flags, NULL); } } |