From b01e74b72efb5f1ef305d8a6161b52b956ba046b Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Wed, 21 Mar 2001 13:46:09 +0000 Subject: [PATCH] Use %c for expire/change dates --- usr.sbin/pw/pw_user.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/pw/pw_user.c b/usr.sbin/pw/pw_user.c index 2dee04b680d..8a096687e91 100644 --- a/usr.sbin/pw/pw_user.c +++ b/usr.sbin/pw/pw_user.c @@ -1155,9 +1155,9 @@ print_user(struct passwd * pwd, int pretty, int v7) *p = (char) toupper((unsigned char)*p); } if (pwd->pw_expire > (time_t)0 && (tptr = localtime(&pwd->pw_expire)) != NULL) - strftime(acexpire, sizeof acexpire, "%a %Ef %Y %X", tptr); + strftime(acexpire, sizeof acexpire, "%c", tptr); if (pwd->pw_change > (time_t)0 && (tptr = localtime(&pwd->pw_change)) != NULL) - strftime(pwexpire, sizeof pwexpire, "%a %Ef %Y %X", tptr); + strftime(pwexpire, sizeof pwexpire, "%c", tptr); printf("Login Name: %-15s #%-12ld Group: %-15s #%ld\n" " Full Name: %s\n" " Home: %-26.26s Class: %s\n"