]> git.ozlabs.org Git - ppp.git/blobdiff - aix4/ppp_comp.c
change upap to pap in debug messages
[ppp.git] / aix4 / ppp_comp.c
index 8ce40307ae9ec98ec97220b30aaa0b0cc5dbcc59..7032d9af1b25c4ef3c092cc991b081aa82819eb7 100644 (file)
@@ -24,7 +24,7 @@
  * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
  * OR MODIFICATIONS.
  *
  * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
  * OR MODIFICATIONS.
  *
- * $Id: ppp_comp.c,v 1.3 1995/04/26 04:15:48 paulus Exp $
+ * $Id: ppp_comp.c,v 1.6 1995/06/23 01:42:54 paulus Exp $
  */
 
 #include <net/net_globals.h>
  */
 
 #include <net/net_globals.h>
@@ -86,7 +86,9 @@ struct ppp_comp_state {
 extern struct compressor ppp_bsd_compress;
 
 struct compressor *ppp_compressors[] = {
 extern struct compressor ppp_bsd_compress;
 
 struct compressor *ppp_compressors[] = {
+#if DO_BSD_COMPRESS
     &ppp_bsd_compress,
     &ppp_bsd_compress,
+#endif
     NULL
 };
 
     NULL
 };
 
@@ -180,6 +182,7 @@ ppp_comp_wput(q, mp)
             mp = allocb(sizeof(struct ppp_comp_stats) + sizeof(u_long),
                         BPRI_HI);
             if (mp != NULL) {
             mp = allocb(sizeof(struct ppp_comp_stats) + sizeof(u_long),
                         BPRI_HI);
             if (mp != NULL) {
+               mp->b_datap->db_type = M_CTL;
                 *(u_char *) mp->b_wptr = IF_CSTATS;
                 mp->b_wptr += sizeof(u_long); /* should be enough alignment */
                 pcp = (struct ppp_comp_stats *) mp->b_wptr;
                 *(u_char *) mp->b_wptr = IF_CSTATS;
                 mp->b_wptr += sizeof(u_long); /* should be enough alignment */
                 pcp = (struct ppp_comp_stats *) mp->b_wptr;
@@ -428,7 +431,7 @@ ppp_comp_ccp(q, mp, rcvd)
                if (cp->xstate != NULL
                    && (*cp->xcomp->comp_init)
                        (cp->xstate, dp + CCP_HDRLEN, clen - CCP_HDRLEN,
                if (cp->xstate != NULL
                    && (*cp->xcomp->comp_init)
                        (cp->xstate, dp + CCP_HDRLEN, clen - CCP_HDRLEN,
-                        0, /* XXX: should be unit */
+                        0, /* XXX: should be unit */ 0,
                         cp->debug))
                    cp->ccp_state |= CCP_COMP_RUN;
            } else {
                         cp->debug))
                    cp->ccp_state |= CCP_COMP_RUN;
            } else {