diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-06-26 14:09:29 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-26 14:09:29 -0700 |
commit | 5c83d850d076ebc00b149975981703a6a664892b (patch) | |
tree | ad73b67921955035e55321ade766f28cbc9cc048 /revision.c | |
parent | 849b44cdf193908dfe1cadc731fb23019b53a211 (diff) | |
parent | 03df567fbf6afeca32f6a27d04656c1a3a162453 (diff) | |
download | git-5c83d850d076ebc00b149975981703a6a664892b.tar.gz |
Merge branch 'mh/packed-ref-store-prep'
Bugfix for a topic that is (only) in 'master'.
* mh/packed-ref-store-prep:
for_each_bisect_ref(): don't trim refnames
lock_packed_refs(): fix cache validity check
Diffstat (limited to 'revision.c')
-rw-r--r-- | revision.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/revision.c b/revision.c index d81c08a1de..e181ad1b70 100644 --- a/revision.c +++ b/revision.c @@ -2075,7 +2075,7 @@ static int for_each_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_d struct strbuf bisect_refs = STRBUF_INIT; int status; strbuf_addf(&bisect_refs, "refs/bisect/%s", term); - status = for_each_ref_in_submodule(submodule, bisect_refs.buf, fn, cb_data); + status = for_each_fullref_in_submodule(submodule, bisect_refs.buf, fn, cb_data, 0); strbuf_release(&bisect_refs); return status; } |