22 lines
604 B
Text
22 lines
604 B
Text
$NetBSD: patch-bw,v 1.1.1.1 1999/10/08 04:34:43 dbj Exp $
|
|
|
|
--- netbsd-1.4/if_ppp.c.orig2 Wed Sep 29 22:46:03 1999
|
|
+++ netbsd-1.4/if_ppp.c Wed Sep 29 22:55:33 1999
|
|
@@ -176,6 +176,7 @@
|
|
|
|
extern struct compressor ppp_bsd_compress;
|
|
extern struct compressor ppp_deflate, ppp_deflate_draft;
|
|
+extern struct compressor ppp_mppe;
|
|
|
|
struct compressor *ppp_compressors[8] = {
|
|
#if DO_BSD_COMPRESS && defined(PPP_BSDCOMP)
|
|
@@ -184,6 +185,9 @@
|
|
#if DO_DEFLATE && defined(PPP_DEFLATE)
|
|
&ppp_deflate,
|
|
&ppp_deflate_draft,
|
|
+#endif
|
|
+#ifdef DO_MPPE && defined(PPP_MPPENCRYPT)
|
|
+ &ppp_mppe,
|
|
#endif
|
|
NULL
|
|
};
|