From: Paul Mackerras Date: Mon, 1 May 1995 01:42:38 +0000 (+0000) Subject: only ref ppp_bsd_compress if DO_BSD_COMPRESS X-Git-Tag: v2.2~117 X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=2b8a87b315b557abcd53e81b838c2aeb97209068;p=ppp.git only ref ppp_bsd_compress if DO_BSD_COMPRESS --- diff --git a/aix4/ppp_comp.c b/aix4/ppp_comp.c index 4974855..ac75cf5 100644 --- a/aix4/ppp_comp.c +++ b/aix4/ppp_comp.c @@ -24,7 +24,7 @@ * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, * OR MODIFICATIONS. * - * $Id: ppp_comp.c,v 1.4 1995/04/28 06:13:05 paulus Exp $ + * $Id: ppp_comp.c,v 1.5 1995/05/01 01:42:38 paulus Exp $ */ #include @@ -86,7 +86,9 @@ struct ppp_comp_state { extern struct compressor ppp_bsd_compress; struct compressor *ppp_compressors[] = { +#if DO_BSD_COMPRESS &ppp_bsd_compress, +#endif NULL };