diff options
author | brian <brian@cvs.openbsd.org> | 1998-06-27 12:06:50 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 1998-06-27 12:06:50 +0000 |
commit | e9b7cb7902cc8bb5ac9c456c8519103d3e494bcb (patch) | |
tree | 0661032b8d4df3b135c4eb4c922e0392967055ac /usr.sbin/ppp/async.c | |
parent | 5b7d1fce1b5e476e4e95011e96c502dea5939af2 (diff) |
Fix ``sizeof(u_long) == 4'' errors.
Suggested by: theo
Diffstat (limited to 'usr.sbin/ppp/async.c')
-rw-r--r-- | usr.sbin/ppp/async.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ppp/async.c b/usr.sbin/ppp/async.c index aa6516ff2d5..137b6f9ca92 100644 --- a/usr.sbin/ppp/async.c +++ b/usr.sbin/ppp/async.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: async.c,v 1.2 1998/01/21 02:13:28 brian Exp $ + * $Id: async.c,v 1.3 1998/06/27 12:06:39 brian Exp $ * */ #include <sys/param.h> @@ -48,8 +48,8 @@ static struct async_state { int length; u_char hbuff[HDLCSIZE]; /* recv buffer */ u_char xbuff[HDLCSIZE]; /* xmit buffer */ - u_long my_accmap; - u_long his_accmap; + u_int32_t my_accmap; + u_int32_t his_accmap; } AsyncState; #define MODE_HUNT 0x01 |