diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-03-05 12:44:42 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-03-05 12:49:59 -0800 |
commit | e8e92e05ab3b9cda6ae3d5ddf1a83834dca7857b (patch) | |
tree | 9eaadb172c0454ff07944303144682c8aff1bc40 /builtin | |
parent | Git 1.8.1.5 (diff) | |
download | tgif-e8e92e05ab3b9cda6ae3d5ddf1a83834dca7857b.tar.xz |
reflog: fix typo in "reflog expire" clean-up codepath
In "reflog expire" we were not clearing the REACHABLE bit from
objects reachable from the tip of refs we marked earlier.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-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 b3c9e27bde..ef56e7b119 100644 --- a/builtin/reflog.c +++ b/builtin/reflog.c @@ -414,7 +414,7 @@ static int expire_reflog(const char *ref, const unsigned char *sha1, int unused, if (cb.unreachable_expire_kind == UE_HEAD) { struct commit_list *elem; for (elem = tips; elem; elem = elem->next) - clear_commit_marks(tip_commit, REACHABLE); + clear_commit_marks(elem->item, REACHABLE); free_commit_list(tips); } else { clear_commit_marks(tip_commit, REACHABLE); |