From 4c48501ee2a022a0dd207a2db4d346a00f9927a1 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 2 Jul 2014 21:46:41 -0400 Subject: properly pass current locale to *_l functions when used internally this change is presently non-functional since the callees do not yet use their locale argument for anything. --- src/time/strftime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/time/strftime.c') diff --git a/src/time/strftime.c b/src/time/strftime.c index 75ebca62..794fbe1d 100644 --- a/src/time/strftime.c +++ b/src/time/strftime.c @@ -5,6 +5,7 @@ #include #include #include +#include "locale_impl.h" #include "libc.h" #include "time_impl.h" @@ -263,7 +264,7 @@ size_t __strftime_l(char *restrict s, size_t n, const char *restrict f, const st size_t strftime(char *restrict s, size_t n, const char *restrict f, const struct tm *restrict tm) { - return __strftime_l(s, n, f, tm, 0); + return __strftime_l(s, n, f, tm, CURRENT_LOCALE); } weak_alias(__strftime_l, strftime_l); -- cgit v1.2.1