diff options
author | rwatson <rwatson@FreeBSD.org> | 2003-06-23 15:37:08 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2003-06-23 15:37:08 +0000 |
commit | bc7d9d78f7464b4c67e202934e3f8412170c87a6 (patch) | |
tree | ad1960ac06f27e6ac980d4b833cf5e01760d278d /usr.sbin/ppp | |
parent | f98fc09d138ff06a56ad68e6d02d16ae445fd7cd (diff) | |
download | FreeBSD-src-bc7d9d78f7464b4c67e202934e3f8412170c87a6.zip FreeBSD-src-bc7d9d78f7464b4c67e202934e3f8412170c87a6.tar.gz |
Remove world read bit from the ppp binary; we don't do world-execute,
so it was inconsistent (although probably not harmful) to have
world-read.
Submitted by: Socketd <db@traceroute.dk>
Diffstat (limited to 'usr.sbin/ppp')
-rw-r--r-- | usr.sbin/ppp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/Makefile b/usr.sbin/ppp/Makefile index a3526f9..5e625b6 100644 --- a/usr.sbin/ppp/Makefile +++ b/usr.sbin/ppp/Makefile @@ -20,9 +20,9 @@ NOSUID= true .endif .if defined(NOSUID) || defined(PPP_NOSUID) -BINMODE=554 +BINMODE=550 .else -BINMODE=4554 +BINMODE=4550 BINOWN= root .endif BINGRP= network |