aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pw
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2015-08-03 06:06:56 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2015-08-03 06:06:56 +0000
commit5e52b667a7884fb58303192da59a55d939ef2c3a (patch)
treeb2d49caf70d94d4b1110d965f26189cf476f9a1a /usr.sbin/pw
parentbbec1b5a7bf0da8f4406a1517982fcc6a7ac1668 (diff)
downloadsrc-5e52b667a7884fb58303192da59a55d939ef2c3a.tar.gz
src-5e52b667a7884fb58303192da59a55d939ef2c3a.zip
Fix bugs spotted by gcc
Reported by: adrian
Notes
Notes: svn path=/head/; revision=286218
Diffstat (limited to 'usr.sbin/pw')
-rw-r--r--usr.sbin/pw/pw_user.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/pw/pw_user.c b/usr.sbin/pw/pw_user.c
index f1207e03f4c9..b51a6cbbabf9 100644
--- a/usr.sbin/pw/pw_user.c
+++ b/usr.sbin/pw/pw_user.c
@@ -700,7 +700,7 @@ pw_user_show(int argc, char **argv, char *arg1)
{
struct passwd *pwd = NULL;
char *name = NULL;
- uid_t id = -1;
+ intmax_t id = -1;
int ch;
bool all = false;
bool pretty = false;
@@ -786,7 +786,7 @@ pw_user_del(int argc, char **argv, char *arg1)
char home[MAXPATHLEN];
const char *cfg = NULL;
struct stat st;
- uid_t id;
+ intmax_t id = -1;
int ch, rc;
bool nis = false;
bool deletehome = false;
@@ -1423,8 +1423,9 @@ pw_user_mod(int argc, char **argv, char *arg1)
int ch, fd = -1;
size_t i, j;
bool quiet, createhome, pretty, dryrun, nis, edited, docreatehome;
+ bool precrypted;
mode_t homemode = 0;
- time_t expire_days, password_days, now, precrypted;
+ time_t expire_days, password_days, now;
expire_days = password_days = -1;
gecos = homedir = grname = name = newname = skel = shell =NULL;