summaryrefslogtreecommitdiff
path: root/revision.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-04-03 15:44:02 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-03 15:44:02 (GMT)
commit64379806a9adaeaaa7971b7f8411105987ea6d42 (patch)
tree6297bf9e61f6cbccbf6e2fe5fdd7ae2e7c6a143a /revision.c
parent67ff3d27f6f0ce8f095d807f6653d606d918e545 (diff)
parentc19d1b4e840535c5fc27077194e8ac219c02644c (diff)
downloadgit-64379806a9adaeaaa7971b7f8411105987ea6d42.zip
git-64379806a9adaeaaa7971b7f8411105987ea6d42.tar.gz
git-64379806a9adaeaaa7971b7f8411105987ea6d42.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/revision.c b/revision.c
index 95d21e6..59b26c7 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;
/*