Use %Ef instead of hardcoded %b %e

This commit is contained in:
Andrey A. Chernov 2000-06-22 15:09:51 +00:00
parent 445572c1ed
commit 34d45d6d4e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=61956

View File

@ -323,7 +323,7 @@ show_today(users, logins, secs)
char date[64];
time_t yesterday = secs - 1;
(void)strftime(date, sizeof (date), "%b %e total",
(void)strftime(date, sizeof (date), "%Ef total",
localtime(&yesterday));
/* restore the missing second */