From 93ab0f907270a62cce17f212d8d2abda4cd7de4c Mon Sep 17 00:00:00 2001 From: davidn Date: Mon, 3 Jul 2000 12:13:10 +0000 Subject: Fix breakage introduced by bypassing update for additional 'mod' functionality when nothing had actually changed; -d changes would not set the 'something had changed flag'. Actually test for a change in homedir. PR: bin/19649 --- usr.sbin/pw/pw_user.c | 1 + 1 file changed, 1 insertion(+) (limited to 'usr.sbin/pw/pw_user.c') diff --git a/usr.sbin/pw/pw_user.c b/usr.sbin/pw/pw_user.c index bd574c6..e8a3b07 100644 --- a/usr.sbin/pw/pw_user.c +++ b/usr.sbin/pw/pw_user.c @@ -532,6 +532,7 @@ pw_user(struct userconf * cnf, int mode, struct cargs * args) } if ((arg = getarg(args, 'd')) != NULL) { + edited = strcmp(pwd->pw_dir, arg->val) != 0; if (stat(pwd->pw_dir = arg->val, &st) == -1) { if (getarg(args, 'm') == NULL && strcmp(pwd->pw_dir, "/nonexistent") != 0) warnx("WARNING: home `%s' does not exist", pwd->pw_dir); -- cgit v1.1