From 86d48ef9c4c112578de268455e8a638061655b76 Mon Sep 17 00:00:00 2001 From: brian Date: Sat, 27 Jun 1998 16:24:52 +0000 Subject: More u_long -> u_int32_t --- usr.sbin/ppp/ipcp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.sbin/ppp/ipcp.c b/usr.sbin/ppp/ipcp.c index 1ee7df9..21e0eef 100644 --- a/usr.sbin/ppp/ipcp.c +++ b/usr.sbin/ppp/ipcp.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: ipcp.c,v 1.59 1998/06/27 14:17:27 brian Exp $ + * $Id: ipcp.c,v 1.60 1998/06/27 14:18:06 brian Exp $ * * TODO: * o More RFC1772 backward compatibility @@ -449,7 +449,7 @@ ipcp_SetIPaddress(struct bundle *bundle, struct in_addr myaddr, { struct sockaddr_in *sock_in; int s; - u_long mask, addr; + u_int32_t mask, addr; struct ifaliasreq ifra; /* If given addresses are alreay set, then ignore this request */ @@ -575,7 +575,7 @@ IpcpSendConfigReq(struct fsm *fp) *(u_short *)o->data = htons(PROTO_VJCOMP); INC_LCP_OPT(TY_COMPPROTO, 4, o); } else { - *(u_long *)o->data = htonl(ipcp->my_compproto); + *(u_int32_t *)o->data = htonl(ipcp->my_compproto); INC_LCP_OPT(TY_COMPPROTO, 6, o); } } -- cgit v1.1