From: Paul Mackerras Date: Tue, 18 Oct 1994 02:07:33 +0000 (+0000) Subject: change type of bitfield from u_short to u_int X-Git-Tag: RELEASE_2_3_6~841 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=dd0bf70f1610a74e26c03972bfd639f8c03ad56b;ds=inline change type of bitfield from u_short to u_int --- diff --git a/pppd/ccp.h b/pppd/ccp.h index 95a1b23..a2435bb 100644 --- a/pppd/ccp.h +++ b/pppd/ccp.h @@ -24,7 +24,7 @@ * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, * OR MODIFICATIONS. * - * $Id: ccp.h,v 1.2 1994/09/21 06:47:37 paulus Exp $ + * $Id: ccp.h,v 1.3 1994/10/18 02:07:33 paulus Exp $ */ /* @@ -39,7 +39,7 @@ #define RESETACK 15 typedef struct ccp_options { - u_short bsd_compress: 1; /* do BSD Compress? */ + u_int bsd_compress: 1; /* do BSD Compress? */ u_short bsd_bits; /* # bits/code for BSD Compress */ } ccp_options;