shithub: sl

Download patch

ref: 06a5c4a57ec148d3a965e3a3cce8d370ed47e1b3
parent: 1c3422ef1d4b994ba5e156f6dba79df07dd88995
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Sat Jan 25 21:48:24 EST 2025

time->string: choose a more specific format for strftime to avoid y2k warning; more error checking

--- a/meson.build
+++ b/meson.build
@@ -26,7 +26,6 @@
 	'-Wint-to-pointer-cast',
 	'-Wmissing-noreturn',
 	'-Wmissing-prototypes',
-	'-Wno-format-y2k',
 	'-Wpointer-arith',
 	'-Wpointer-to-int-cast',
 	'-Wredundant-decls',
--- a/sys_posix.c
+++ b/sys_posix.c
@@ -31,8 +31,9 @@
 	time_t tme = (time_t)s;
 	struct tm tm;
 
-	localtime_r(&tme, &tm);
-	strftime(buf, sz, "%c", &tm);
+	*buf = 0;
+	if(localtime_r(&tme, &tm) != nil)
+		strftime(buf, sz, "%a %b %e %H:%M:%S %Y", &tm);
 }
 
 double