diff options
author | kris <kris@FreeBSD.org> | 2001-07-24 02:37:48 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-07-24 02:37:48 +0000 |
commit | 66a383b3704e9fdbf8815c8ae55b9c9c4400872d (patch) | |
tree | 8fa233e5cfa4784e9a5de7cbc29e6911d4954c78 /usr.sbin/pppd | |
parent | f60e5321a12eb7132b4e64c4da92de5f77ed30ef (diff) | |
download | FreeBSD-src-66a383b3704e9fdbf8815c8ae55b9c9c4400872d.zip FreeBSD-src-66a383b3704e9fdbf8815c8ae55b9c9c4400872d.tar.gz |
Install this mode 4550 owned by group dialer; there is unsafe code
in the signal handlers which may pose a risk when executable by untrusted
users.
Submitted by: Przemyslaw Frasunek <venglin@freebsd.lublin.pl>
MFC After: 3 days
Diffstat (limited to 'usr.sbin/pppd')
-rw-r--r-- | usr.sbin/pppd/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/pppd/Makefile b/usr.sbin/pppd/Makefile index b1379c1..a628fb8 100644 --- a/usr.sbin/pppd/Makefile +++ b/usr.sbin/pppd/Makefile @@ -7,7 +7,9 @@ PROG= pppd MAN= pppd.8 SRCS= main.c magic.c fsm.c lcp.c ipcp.c ipxcp.c upap.c chap.c ccp.c \ demand.c auth.c options.c sys-bsd.c -BINMODE= 4555 +BINMODE=4550 +BINOWN= root +BINGRP= dialer CFLAGS+= -DHAVE_PATHS_H |