aboutsummaryrefslogtreecommitdiff
path: root/secure/libexec
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1996-05-07 19:05:10 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1996-05-07 19:05:10 +0000
commit45fa48fe14de46c359fa17ce714291756474f86d (patch)
treeeb9e09171cadc37425b40f005d43ae311da8e023 /secure/libexec
parentaaf73493e8cc600959e38a9b7e71c403682816b6 (diff)
Notes
Diffstat (limited to 'secure/libexec')
-rw-r--r--secure/libexec/telnetd/utility.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/secure/libexec/telnetd/utility.c b/secure/libexec/telnetd/utility.c
index 049fcd137d26..e2f285aa1c59 100644
--- a/secure/libexec/telnetd/utility.c
+++ b/secure/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 <locale.h>
+#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);