On Tue, Apr 14, 2020 at 04:31:54PM +0700, Đoàn Trần Công Danh wrote: > diff --git a/date.c b/date.c > index b0d9a8421d..2f37397beb 100644 > --- a/date.c > +++ b/date.c > @@ -556,6 +556,8 @@ static int match_multi_number(timestamp_t num, char c, const char *date, > case ':': > if (num3 < 0) > num3 = 0; > + else if (*end == '.' && isdigit(end[1])) > + strtol(end + 1, &end, 10); This just throws away the fractional part. I doubt anybody cares much either way, but another option would be to round num3 up or down. -Peff