mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove an uneeded indentation introduced in r286196 to silence gcc warnging
MFC after: 3 days Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
0407410ba0
commit
60f043fe8e
1 changed files with 1 additions and 1 deletions
|
|
@ -589,7 +589,7 @@ print_user(struct passwd * pwd, bool pretty, bool v7)
|
|||
}
|
||||
if (pwd->pw_expire > (time_t)0 && (tptr = localtime(&pwd->pw_expire)) != NULL)
|
||||
strftime(acexpire, sizeof acexpire, "%c", tptr);
|
||||
if (pwd->pw_change > (time_t)0 && (tptr = localtime(&pwd->pw_change)) != NULL)
|
||||
if (pwd->pw_change > (time_t)0 && (tptr = localtime(&pwd->pw_change)) != NULL)
|
||||
strftime(pwexpire, sizeof pwexpire, "%c", tptr);
|
||||
printf("Login Name: %-15s #%-12ju Group: %-15s #%ju\n"
|
||||
" Full Name: %s\n"
|
||||
|
|
|
|||
Loading…
Reference in a new issue