diff options
| author | Stephen McKay <mckay@FreeBSD.org> | 1998-10-15 13:30:48 +0000 |
|---|---|---|
| committer | Stephen McKay <mckay@FreeBSD.org> | 1998-10-15 13:30:48 +0000 |
| commit | f4a747a11ba2a3ebb4ac17626c734e3d4e30418f (patch) | |
| tree | e3bd3c694746e8091c8abc6c4ea7aa8cc30eb752 | |
| parent | 4a949c96ce2e6add8a1e09c9eb36f8919f0ad1d4 (diff) | |
Notes
| -rw-r--r-- | usr.bin/at/at.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/at/at.c b/usr.bin/at/at.c index 2dea501ad105..daded161ad84 100644 --- a/usr.bin/at/at.c +++ b/usr.bin/at/at.c @@ -92,7 +92,7 @@ enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */ /* File scope variables */ -static char rcsid[] = "$Id: at.c,v 1.12 1997/03/03 07:58:00 ache Exp $"; +static char rcsid[] = "$Id: at.c,v 1.13 1997/03/29 04:27:56 imp Exp $"; char *no_export[] = { "TERM", "TERMCAP", "DISPLAY", "_" @@ -450,6 +450,10 @@ list_jobs() time_t runtimer; char timestr[TIMESIZE]; int first=1; + +#ifdef __FreeBSD__ + (void) setlocale(LC_TIME, ""); +#endif PRIV_START |
