From 45e0579fb7f8008c3df3358ca63bf9189e236edb Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 1 Sep 2001 06:22:57 +0000 Subject: Update. 2001-08-31 Ulrich Drepper * time/strptime.c (strptime_internal): Recognize 'l' format and handle it like 'I' for symmatry with strftime. --- time/strptime.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'time/strptime.c') diff --git a/time/strptime.c b/time/strptime.c index 88b13f09e6..1f440a5d2f 100644 --- a/time/strptime.c +++ b/time/strptime.c @@ -463,6 +463,8 @@ strptime_internal (rp, fmt, tm, decided, era_cnt) tm->tm_hour = val; have_I = 0; break; + case 'l': + /* Match hour in 12-hour clock. GNU extension. */ case 'I': /* Match hour in 12-hour clock. */ get_number (1, 12, 2); -- cgit 1.4.1