diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-04-03 08:44:02 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-03 08:44:02 -0700 |
commit | 64379806a9adaeaaa7971b7f8411105987ea6d42 (patch) | |
tree | 6297bf9e61f6cbccbf6e2fe5fdd7ae2e7c6a143a /revision.c | |
parent | 67ff3d27f6f0ce8f095d807f6653d606d918e545 (diff) | |
parent | c19d1b4e840535c5fc27077194e8ac219c02644c (diff) | |
download | git-64379806a9adaeaaa7971b7f8411105987ea6d42.tar.gz git-64379806a9adaeaaa7971b7f8411105987ea6d42.tar.xz |
Merge branch 'kk/revwalk-slop-too-many-commit-within-a-second' into maint-1.8.1
* kk/revwalk-slop-too-many-commit-within-a-second:
Fix revision walk for commits with the same dates
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 95d21e647..59b26c7e9 100644 --- a/revision.c +++ b/revision.c @@ -708,7 +708,7 @@ static int still_interesting(struct commit_list *src, unsigned long date, int sl * Does the destination list contain entries with a date * before the source list? Definitely _not_ done. */ - if (date < src->item->date) + if (date <= src->item->date) return SLOP; /* |