diff options
author | Junio C Hamano <junkio@cox.net> | 2006-09-27 01:09:18 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-27 01:42:44 -0700 |
commit | 4431fcc4b134ae501e3e57dc568ae4f031e57898 (patch) | |
tree | 572af9e0e6b4e387af2c71e60c94953350d28826 /refs.h | |
parent | e9800b28c24465377dc2b8e26b322d362912647c (diff) | |
download | git-4431fcc4b134ae501e3e57dc568ae4f031e57898.tar.gz |
Clean-up lock-ref implementation
This drops "mustexist" parameter lock_ref_sha1() and lock_any_ref_forupdate()
functions take.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'refs.h')
-rw-r--r-- | refs.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,10 +27,10 @@ extern int for_each_remote_ref(each_ref_fn, void *); extern int get_ref_sha1(const char *ref, unsigned char *sha1); /** Locks a "refs/" ref returning the lock on success and NULL on failure. **/ -extern struct ref_lock *lock_ref_sha1(const char *ref, const unsigned char *old_sha1, int mustexist); +extern struct ref_lock *lock_ref_sha1(const char *ref, const unsigned char *old_sha1); /** Locks any ref (for 'HEAD' type refs). */ -extern struct ref_lock *lock_any_ref_for_update(const char *ref, const unsigned char *old_sha1, int mustexist); +extern struct ref_lock *lock_any_ref_for_update(const char *ref, const unsigned char *old_sha1); /** Release any lock taken but not written. **/ extern void unlock_ref(struct ref_lock *lock); |