diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2014-03-21 19:55:12 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2014-03-21 19:55:12 +0000 |
commit | c8c7123fd02a9c573056292408114c9a2bab640f (patch) | |
tree | 87ff04a39714989a1f3063f530ffe6c623e57f56 /usr.sbin/pppd | |
parent | 273ca24d617e405a0ed34127542ae5c6b9a0866b (diff) |
Disable MS-CHAPv1 (RFC 2433) support. Undocumented; Microsoft dropped
support in 2007 (Windows Vista); requires MD4, which will be removed.
ok sthen@
Diffstat (limited to 'usr.sbin/pppd')
-rw-r--r-- | usr.sbin/pppd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pppd/Makefile b/usr.sbin/pppd/Makefile index 832349e9647..113084a8b9c 100644 --- a/usr.sbin/pppd/Makefile +++ b/usr.sbin/pppd/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.17 2007/06/04 14:59:45 henning Exp $ +# $OpenBSD: Makefile,v 1.18 2014/03/21 19:55:11 naddy Exp $ PCAPDIR=${.CURDIR}/../../lib/libpcap PROG= pppd -SRCS= auth.c cbcp.c ccp.c chap.c chap_ms.c demand.c fsm.c ipcp.c \ +SRCS= auth.c cbcp.c ccp.c chap.c demand.c fsm.c ipcp.c \ lcp.c magic.c main.c options.c sys-bsd.c upap.c .PATH: ${.CURDIR}/../../lib/libpcap ${.CURDIR}/../../sys/net @@ -15,6 +15,6 @@ BINGRP= network LDADD= -lpcap -lutil DPADD= ${LIBPCAP} ${LIBUTIL} -CFLAGS+= -I. -I${PCAPDIR} -DHAVE_PATHS_H -DPPP_FILTER -DUSE_CRYPT -DCHAPMS +CFLAGS+= -I. -I${PCAPDIR} -DHAVE_PATHS_H -DPPP_FILTER .include <bsd.prog.mk> |