diff options
author | brian <brian@cvs.openbsd.org> | 1998-06-07 17:09:44 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 1998-06-07 17:09:44 +0000 |
commit | a7848e86e8fb27e8e398bdfe6b74e19ec9f239f8 (patch) | |
tree | 3e15d4a25e6d155d8d2d24f5344cf49662a570fb /usr.sbin/ppp | |
parent | 082cfbbed6f925f88244d0cd65de0dede9f7f012 (diff) |
Fix previous commit. bit 1 is the execute bit, not the read bit *blush*
ie, BINMODE=4551 -> BINMODE=4554
Pointed out by: Bruce Evans <bde@zeta.org.au>
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 3acc27f4db4..c79275ffe77 100644 --- a/usr.sbin/ppp/Makefile +++ b/usr.sbin/ppp/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 1998/06/07 00:20:22 brian Exp $ +# $Id: Makefile,v 1.9 1998/06/07 17:09:43 brian Exp $ PROG= ppp SRCS= arp.c async.c auth.c ccp.c chap.c chap_ms.c chat.c \ @@ -10,7 +10,7 @@ CFLAGS+=-Wall -Wmissing-prototypes -DHAVE_DES -DNOALIAS LDADD+= -lutil -ldes -lz DPADD+= ${LIBUTIL} ${LIBDES} ${LIBZ} MAN= ppp.8 -BINMODE=4551 +BINMODE=4554 BINOWN= root BINGRP= network |