From: Paul Mackerras Date: Sat, 14 Sep 1996 05:10:38 +0000 (+0000) Subject: inuse field needs to be 32 bits X-Git-Tag: RELEASE_2_3_6~343 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=c30cbccb27fcea7cd729c3f03336e978f89871e5 inuse field needs to be 32 bits --- diff --git a/include/linux/if_pppvar.h b/include/linux/if_pppvar.h index 3d0ee88..92381e2 100644 --- a/include/linux/if_pppvar.h +++ b/include/linux/if_pppvar.h @@ -93,7 +93,7 @@ struct ppp { __s32 magic; /* magic value for structure */ /* Bitmapped flag fields. */ - __u8 inuse; /* are we allocated? */ + __u32 inuse; /* are we allocated? */ __u8 escape; /* 0x20 if prev char was PPP_ESC*/ __u8 toss; /* toss this frame */ diff --git a/linux/if_pppvar.h b/linux/if_pppvar.h index 3d0ee88..92381e2 100644 --- a/linux/if_pppvar.h +++ b/linux/if_pppvar.h @@ -93,7 +93,7 @@ struct ppp { __s32 magic; /* magic value for structure */ /* Bitmapped flag fields. */ - __u8 inuse; /* are we allocated? */ + __u32 inuse; /* are we allocated? */ __u8 escape; /* 0x20 if prev char was PPP_ESC*/ __u8 toss; /* toss this frame */