Author: bapt
Date: Tue Nov 20 10:59:41 2012
New Revision: 243330
URL: http://svnweb.freebsd.org/changeset/base/243330
Log:
  Correctly set the password file mode after renaming in NIS mode

Modified:
  head/usr.sbin/pw/pw_nis.c

Modified: head/usr.sbin/pw/pw_nis.c
==============================================================================
--- head/usr.sbin/pw/pw_nis.c   Tue Nov 20 09:27:56 2012        (r243329)
+++ head/usr.sbin/pw/pw_nis.c   Tue Nov 20 10:59:41 2012        (r243330)
@@ -68,6 +68,8 @@ pw_nisupdate(const char * path, struct p
        }
        if (rename(pw_tempname(), path) == -1)
                err(1, "rename()");
+       if (chmod(path, 0644) == -1)
+               err(1, "chmod()");
 
        free(pw);
        pw_fini();
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to