From 53c0b02cc79677575caa59e9a887273503562a21 Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Fri, 31 May 2019 19:03:20 -0500 Subject: strftime: add %l support --- src/time/strftime.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/time/strftime.c b/src/time/strftime.c index cc53d536..98caa1f6 100644 --- a/src/time/strftime.c +++ b/src/time/strftime.c @@ -95,6 +95,8 @@ const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm * case 'H': val = tm->tm_hour; goto number; + case 'l': + def_pad = ' '; case 'I': val = tm->tm_hour; if (!val) val = 12; -- cgit v1.2.3-60-g2f50