git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix revision walk for commits with the same dates
@ 2013-03-07 18:03 Kacper Kornet
  2013-03-22 18:38 ` [PATCH v2] " Kacper Kornet
  0 siblings, 1 reply; 5+ messages in thread
From: Kacper Kornet @ 2013-03-07 18:03 UTC (permalink / raw)
  To: git

git rev-list A^! --not B provides wrong answer if all commits in the
range A..B had the same commit times and there are more then 8 of them.
This commits fixes the logic in still_interesting function to prevent
this error.

Signed-off-by: Kacper Kornet <draenog@pld-linux.org>
---
 revision.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/revision.c b/revision.c
index ef60205..cf620c6 100644
--- a/revision.c
+++ b/revision.c
@@ -709,7 +709,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;
 
 	/*
-- 
1.8.2.rc2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-03-24  2:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-07 18:03 [PATCH] Fix revision walk for commits with the same dates Kacper Kornet
2013-03-22 18:38 ` [PATCH v2] " Kacper Kornet
2013-03-22 20:45   ` Junio C Hamano
2013-03-22 21:07     ` Kacper Kornet
2013-03-24  2:18   ` Eric Sunshine

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).