aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pw
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2019-05-25 21:57:01 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2019-05-25 21:57:01 +0000
commit60f043fe8eb0a43d00bd96f20ff0be3d78695c98 (patch)
tree7735022b6c3267a7cdee5131fbbcd63bca469752 /usr.sbin/pw
parent0407410ba099115873804d88bfada2e21eee5455 (diff)
downloadsrc-60f043fe8eb0a43d00bd96f20ff0be3d78695c98.tar.gz
src-60f043fe8eb0a43d00bd96f20ff0be3d78695c98.zip
Remove an uneeded indentation introduced in r286196 to silence gcc warnging
MFC after: 3 days Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=348282
Diffstat (limited to 'usr.sbin/pw')
-rw-r--r--usr.sbin/pw/pw_user.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pw/pw_user.c b/usr.sbin/pw/pw_user.c
index 148239ebd2b5..cb95d4506865 100644
--- a/usr.sbin/pw/pw_user.c
+++ b/usr.sbin/pw/pw_user.c
@@ -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"