From 1bf34f2c1b3ef18d8e5645ab80ed174d76b2feef Mon Sep 17 00:00:00 2001 From: bapt Date: Tue, 20 Nov 2012 14:05:46 +0000 Subject: In NIS mode first chmod(2) the temporary file and is succeed then rename(2) --- usr.sbin/pw/pw_nis.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/pw/pw_nis.c b/usr.sbin/pw/pw_nis.c index 7af2bef..918fc30 100644 --- a/usr.sbin/pw/pw_nis.c +++ b/usr.sbin/pw/pw_nis.c @@ -66,10 +66,10 @@ pw_nisupdate(const char * path, struct passwd * pwd, char const * user) pw_fini(); err(1, "pw_copy()"); } + if (chmod(pw_tempname(), 0644) == -1) + err(1, "chmod()"); if (rename(pw_tempname(), path) == -1) err(1, "rename()"); - if (chmod(path, 0644) == -1) - err(1, "chmod()"); free(pw); pw_fini(); -- cgit v1.1