commit: a8a671a27c1c24c8f20ce60c00d2d76c642183ea
parent 362c7e27f8c4d599f6c4156c074dec7345b7c5df
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Thu, 6 Mar 2025 06:58:30 +0100
lib/iso_parse: ignore space before timezone offset in ISO datetimes
Diffstat:
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/lib/iso_parse.c b/lib/iso_parse.c
@@ -420,6 +420,9 @@ iso_parse(char *arg, struct tm *time, long *nsec, const char **errstr)
}
}
+ for(; isspace(s[0]); s++)
+ ;
+
if(s != NULL && s[0] != '\0')
{
if(s[0] == 'Z' && s[1] == '\0')
diff --git a/test-cmd/date.sh b/test-cmd/date.sh
@@ -3,7 +3,7 @@
# SPDX-License-Identifier: MPL-2.0
target="$(dirname "$0")/../cmd/date"
-plans=32
+plans=33
. "$(dirname "$0")/tap.sh"
. "$(dirname "$0")/init_env.sh"
@@ -70,6 +70,9 @@ t 'iso Minutes' '-u -d 2025-02-10T21:05:53,437742835+01:00 -Iminutes' '2025-02-1
t 'iso Seconds' '-u -d 2025-02-10T21:05:53,437742835+01:00 -Iseconds' '2025-02-10T20:05:53+00:00
'
+t_args 'iso seconds-space-tz' '2025-02-10T20:05:53+00:00
+' -u -d '2025-02-10 21:05:53,437742835 +01:00' -Iseconds
+
t 'iso Nano-Seconds' '-u -d 2025-02-10T21:05:53,437742835+01:00 -Ins' '2025-02-10T20:05:53,437742835+00:00
'