diff options
author | Brad King <brad.king@kitware.com> | 2013-08-30 14:12:00 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-30 14:57:28 -0700 |
commit | 9bbb0fa1fdc6c413b1f35c26e090515e5d0096aa (patch) | |
tree | 45d0c317ec200f7c9e61e5a7dff1fda5a88aba42 /builtin/reflog.c | |
parent | 2be778a8ac557931c270fb09fa6b4b3c4ec0729c (diff) | |
download | git-9bbb0fa1fdc6c413b1f35c26e090515e5d0096aa.tar.gz git-9bbb0fa1fdc6c413b1f35c26e090515e5d0096aa.tar.xz |
refs: report ref type from lock_any_ref_for_update
Expose lock_ref_sha1_basic's type_p argument to callers of
lock_any_ref_for_update. Update all call sites to ignore it by passing
NULL for now.
Signed-off-by: Brad King <brad.king@kitware.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/reflog.c')
-rw-r--r-- | builtin/reflog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/reflog.c b/builtin/reflog.c index 54184b3d1..28d756a41 100644 --- a/builtin/reflog.c +++ b/builtin/reflog.c @@ -366,7 +366,7 @@ static int expire_reflog(const char *ref, const unsigned char *sha1, int unused, * we take the lock for the ref itself to prevent it from * getting updated. */ - lock = lock_any_ref_for_update(ref, sha1, 0); + lock = lock_any_ref_for_update(ref, sha1, 0, NULL); if (!lock) return error("cannot lock ref '%s'", ref); log_file = git_pathdup("logs/%s", ref); |