diff options
author | pb <pb@FreeBSD.org> | 1999-06-26 12:15:39 +0000 |
---|---|---|
committer | pb <pb@FreeBSD.org> | 1999-06-26 12:15:39 +0000 |
commit | 2f10423ca8c93d41886e4a2029555624613fa43f (patch) | |
tree | 8b2d185387b980567968ea73c2269ee9dd82ed99 /lib/libutil/pw_util.c | |
parent | 418f613da58f1a5e74d32645bcde00a5fcca9bb2 (diff) | |
download | FreeBSD-src-2f10423ca8c93d41886e4a2029555624613fa43f.zip FreeBSD-src-2f10423ca8c93d41886e4a2029555624613fa43f.tar.gz |
Force umask to 077 (instead of 000) during the edit phase, to get
secure permissions in case the user attempts to save something to
a file of his own.
Move umask stuff out of pw_init() into main() for better visibility
of overall umask tweaking logic.
PR: misc/11797
Diffstat (limited to 'lib/libutil/pw_util.c')
-rw-r--r-- | lib/libutil/pw_util.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libutil/pw_util.c b/lib/libutil/pw_util.c index cdfcc4d..5930342 100644 --- a/lib/libutil/pw_util.c +++ b/lib/libutil/pw_util.c @@ -36,7 +36,7 @@ static const char sccsid[] = "@(#)pw_util.c 8.3 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: pw_util.c,v 1.13 1998/12/13 01:39:32 dillon Exp $"; + "$Id: pw_util.c,v 1.14 1999/06/26 07:16:38 sheldonh Exp $"; #endif /* not lint */ /* @@ -103,9 +103,6 @@ pw_init() (void)signal(SIGQUIT, SIG_IGN); (void)signal(SIGTERM, SIG_IGN); (void)signal(SIGCONT, pw_cont); - - /* Create with exact permissions. */ - (void)umask(0); } int |