Changeset: 4666d7fcce2e for MonetDB URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=4666d7fcce2e Modified Files: gdk/gdk_time.c Branch: timezone Log Message:
Accept leap seconds. diffs (12 lines): diff --git a/gdk/gdk_time.c b/gdk/gdk_time.c --- a/gdk/gdk_time.c +++ b/gdk/gdk_time.c @@ -661,7 +661,7 @@ parse_daytime(const char *buf, daytime * break; case 3: /* read hour, min, and sec */ - if (hour >= 24 || min >= 60 || sec >= 60) { + if (hour >= 24 || min >= 60 || sec > 60) { GDKerror("Syntax error in time.\n"); return -1; } _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list