summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Nugent <davidn@FreeBSD.org>2000-07-03 12:13:10 +0000
committerDavid Nugent <davidn@FreeBSD.org>2000-07-03 12:13:10 +0000
commit3d0a7e8caa73cd692fedd876b23bad07a005d837 (patch)
treef962ec80c62f8d85c0e46641f4852912dffeb82f
parentd2f720668e25d58dd85b506da2a9e85af35016f5 (diff)
downloadpw-darwin-3d0a7e8caa73cd692fedd876b23bad07a005d837.tar.gz
pw-darwin-3d0a7e8caa73cd692fedd876b23bad07a005d837.tar.zst
pw-darwin-3d0a7e8caa73cd692fedd876b23bad07a005d837.zip
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
-rw-r--r--pw/pw_user.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pw/pw_user.c b/pw/pw_user.c
index bd574c6..e8a3b07 100644
--- a/pw/pw_user.c
+++ b/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);