diff options
author | 1997-01-02 11:10:18 +0000 | |
---|---|---|
committer | 1997-01-02 11:10:18 +0000 | |
commit | 68359f35e9d5bb0ffb06105ded3338488af35124 (patch) | |
tree | 6cddcb3cd549a950cbe24cc2b935a9fc24f9f740 | |
parent | inet_addr --> inet_aton (diff) | |
download | wireguard-openbsd-68359f35e9d5bb0ffb06105ded3338488af35124.tar.xz wireguard-openbsd-68359f35e9d5bb0ffb06105ded3338488af35124.zip |
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) |