diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-01-02 11:10:19 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-01-02 11:10:19 +0000 |
commit | 13cf37ba87ea1676f902dcedac95e8b9fa901cb6 (patch) | |
tree | da072962767968ee120d0436527d1d329eb809ff | |
parent | 3c1d9e5d8209b0c8b16d0e1bb5ee52255bdfe9db (diff) |
PPP_BSDCOMP not PPP_BSD_COMP
-rw-r--r-- | sys/net/if_ppp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_ppp.c b/sys/net/if_ppp.c index 893c482108b..fe64491c173 100644 --- a/sys/net/if_ppp.c +++ b/sys/net/if_ppp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ppp.c,v 1.9 1996/12/19 13:45:16 mickey Exp $ */ +/* $OpenBSD: if_ppp.c,v 1.10 1997/01/02 11:10:18 mickey Exp $ */ /* $NetBSD: if_ppp.c,v 1.31 1996/05/07 02:40:36 thorpej Exp $ */ /* @@ -169,7 +169,7 @@ extern struct compressor ppp_bsd_compress; extern struct compressor ppp_deflate; struct compressor *ppp_compressors[8] = { -#if DO_BSD_COMPRESS && defined(PPP_BSD_COMP) +#if DO_BSD_COMPRESS && defined(PPP_BSDCOMP) &ppp_bsd_compress, #endif #if DO_DEFLATE && defined(PPP_DEFLATE) |