diff options
author | 2016-06-22 19:44:26 +0000 | |
---|---|---|
committer | 2016-06-22 19:44:26 +0000 | |
commit | 207d9d0d1635c5234d07f8f93ee52a1f33690f46 (patch) | |
tree | af88d8d6bae349a0c5f5df14d342d8a79291d736 | |
parent | Syslogd can send messages to a user, test what happens if the (diff) | |
download | wireguard-openbsd-207d9d0d1635c5234d07f8f93ee52a1f33690f46.tar.xz wireguard-openbsd-207d9d0d1635c5234d07f8f93ee52a1f33690f46.zip |
No modules thus no need for extra space for additional ppp compressions.
ok deraadt@ mikeb@
-rw-r--r-- | sys/net/if_ppp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/net/if_ppp.c b/sys/net/if_ppp.c index c4763232bc7..32bce89c9ba 100644 --- a/sys/net/if_ppp.c +++ b/sys/net/if_ppp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ppp.c,v 1.99 2016/05/23 15:22:44 tedu Exp $ */ +/* $OpenBSD: if_ppp.c,v 1.100 2016/06/22 19:44:26 jca Exp $ */ /* $NetBSD: if_ppp.c,v 1.39 1997/05/17 21:11:59 christos Exp $ */ /* @@ -169,13 +169,12 @@ struct mbuf *ppp_pkt_mbuf(struct ppp_pkt *); #ifdef PPP_COMPRESS /* * List of compressors we know about. - * We leave some space so maybe we can modload compressors. */ extern struct compressor ppp_bsd_compress; extern struct compressor ppp_deflate, ppp_deflate_draft; -struct compressor *ppp_compressors[8] = { +struct compressor *ppp_compressors[] = { #if DO_BSD_COMPRESS && defined(PPP_BSDCOMP) &ppp_bsd_compress, #endif |