summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pppd
diff options
context:
space:
mode:
authornaddy <naddy@openbsd.org>2014-03-21 19:55:11 +0000
committernaddy <naddy@openbsd.org>2014-03-21 19:55:11 +0000
commit37f956493e2519049592d1466547a42291d01fe4 (patch)
tree6af6539f0a6242b3b77353830557499ce97e3da0 /usr.sbin/pppd
parentsync (diff)
downloadwireguard-openbsd-37f956493e2519049592d1466547a42291d01fe4.tar.xz
wireguard-openbsd-37f956493e2519049592d1466547a42291d01fe4.zip
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/Makefile6
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>