Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Fix revision walk for commits with the same dates
[gitweb.git]
/
revision.c
diff --git
a/revision.c
b/revision.c
index 68545c80157e46f07436ef0b390216d924e4b521..6a9a8b3c8066cb0d3f536c1a3bf861ab16da8179 100644
(file)
--- 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;
/*