From 573902ba603cc2ec0c40f1435138579e562f420c Mon Sep 17 00:00:00 2001 From: ache Date: Tue, 7 May 1996 19:05:10 +0000 Subject: Localize time --- eBones/libexec/telnetd/utility.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'eBones') diff --git a/eBones/libexec/telnetd/utility.c b/eBones/libexec/telnetd/utility.c index 049fcd1..e2f285a 100644 --- a/eBones/libexec/telnetd/utility.c +++ b/eBones/libexec/telnetd/utility.c @@ -35,6 +35,9 @@ static char sccsid[] = "@(#)utility.c 8.4 (Berkeley) 5/30/95"; #endif /* not lint */ +#ifdef __FreeBSD__ +#include +#endif #define PRINTOPTIONS #include "telnetd.h" @@ -433,12 +436,16 @@ putchr(cc) *putlocation++ = cc; } +#ifdef __FreeBSD__ +static char fmtstr[] = { "%+" }; +#else /* * This is split on two lines so that SCCS will not see the M * between two % signs and expand it... */ static char fmtstr[] = { "%l:%M\ %P on %A, %d %B %Y" }; +#endif void putf(cp, where) @@ -481,6 +488,9 @@ putf(cp, where) break; case 'd': +#ifdef __FreeBSD__ + setlocale(LC_TIME, ""); +#endif (void)time(&t); (void)strftime(db, sizeof(db), fmtstr, localtime(&t)); putstr(db); -- cgit v1.1