Change the timestamp behavior for history to include items whose timestamp is the same as our birth, to better illustrate the incremental history improvements

This commit is contained in:
ridiculousfish 2012-12-03 00:25:08 -08:00
parent 36dfc9f1bf
commit a4581cb233

View File

@ -368,8 +368,8 @@ static size_t offset_of_next_item_fish_2_0(const char *begin, size_t mmap_length
has_timestamp = parse_timestamp(interior_line, &timestamp);
}
/* Skip this item if the timestamp is at or after our cutoff. */
if (has_timestamp && timestamp >= cutoff_timestamp)
/* Skip this item if the timestamp is past our cutoff. */
if (has_timestamp && timestamp > cutoff_timestamp)
{
continue;
}