From: Junio C Hamano Date: Sat, 23 Sep 2006 04:41:49 +0000 (-0700) Subject: lock_ref_sha1_basic: remove unused parameter "plen". X-Git-Tag: v1.4.4-rc1~43^2~21 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5fd6f5cffc7b8bc679c922b8ff0b1cd35bb1a30c;p=git.git lock_ref_sha1_basic: remove unused parameter "plen". Signed-off-by: Junio C Hamano --- diff --git a/refs.c b/refs.c index 5fdf9c413..2cef2b4f0 100644 --- a/refs.c +++ b/refs.c @@ -447,9 +447,7 @@ static struct ref_lock *verify_lock(struct ref_lock *lock, return lock; } -static struct ref_lock *lock_ref_sha1_basic(const char *ref, - int plen, - const unsigned char *old_sha1, int mustexist) +static struct ref_lock *lock_ref_sha1_basic(const char *ref, const unsigned char *old_sha1, int mustexist) { char *ref_file; const char *orig_ref = ref; @@ -489,14 +487,13 @@ struct ref_lock *lock_ref_sha1(const char *ref, if (check_ref_format(ref)) return NULL; strcpy(refpath, mkpath("refs/%s", ref)); - return lock_ref_sha1_basic(refpath, strlen(refpath), - old_sha1, mustexist); + return lock_ref_sha1_basic(refpath, old_sha1, mustexist); } struct ref_lock *lock_any_ref_for_update(const char *ref, const unsigned char *old_sha1, int mustexist) { - return lock_ref_sha1_basic(ref, strlen(ref), old_sha1, mustexist); + return lock_ref_sha1_basic(ref, old_sha1, mustexist); } void unlock_ref(struct ref_lock *lock)