diff options
author | jkh <jkh@FreeBSD.org> | 1994-03-16 13:05:31 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-03-16 13:05:31 +0000 |
commit | 31c91e4def5f46701df2c439358599b3cfac1021 (patch) | |
tree | 62b6aa906ded5691de91529593ef7a0e52f646e5 /gnu/usr.bin | |
parent | 1eb15fbdea3cd46ef556efac5d6af264acc02c97 (diff) | |
download | FreeBSD-src-31c91e4def5f46701df2c439358599b3cfac1021.zip FreeBSD-src-31c91e4def5f46701df2c439358599b3cfac1021.tar.gz |
Make man sgid bin, not sgid AND suid. There is no reason to make man suid
bin since all you need to do is make the cat dirs group owned and writable
by bin - much less dangerous.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/man/man/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/man/man/Makefile b/gnu/usr.bin/man/man/Makefile index 4181aef..9f6bcde 100644 --- a/gnu/usr.bin/man/man/Makefile +++ b/gnu/usr.bin/man/man/Makefile @@ -1,6 +1,6 @@ PROG= man SRCS= man.c manpath.c glob.c -BINMODE=6555 +BINMODE=2555 .if exists(${.CURDIR}/../lib/obj) LDADD= -L${.CURDIR}/../lib/obj -lman |