From 26721ed62e2cefdfe6f1d1603342822d6d2bf616 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 25 Sep 2003 15:34:03 +0000 Subject: Update. 2003-09-25 Jakub Jelinek * misc/syslog.c: Include locale.h. (vsyslog): Add date always in C locale %h %e %T format. --- misc/syslog.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'misc') diff --git a/misc/syslog.c b/misc/syslog.c index d84cbbf47f..fac969ae98 100644 --- a/misc/syslog.c +++ b/misc/syslog.c @@ -48,6 +48,7 @@ static char sccsid[] = "@(#)syslog.c 8.4 (Berkeley) 3/18/94"; #include #include #include +#include #if __STDC__ #include @@ -187,10 +188,11 @@ vsyslog(pri, fmt, ap) prioff = fprintf (f, "<%d>", pri); (void) time (&now); #ifdef USE_IN_LIBIO - f->_IO_write_ptr += strftime (f->_IO_write_ptr, - f->_IO_write_end - f->_IO_write_ptr, - "%h %e %T ", - __localtime_r (&now, &now_tm)); + f->_IO_write_ptr += __strftime_l (f->_IO_write_ptr, + f->_IO_write_end - f->_IO_write_ptr, + "%h %e %T ", + __localtime_r (&now, &now_tm), + &_nl_C_locobj); #else f->__bufp += strftime (f->__bufp, f->__put_limit - f->__bufp, "%h %e %T ", __localtime_r (&now, &now_tm)); -- cgit v1.2.3