diff options
| author | Brian Somers <brian@FreeBSD.org> | 1998-06-26 19:02:40 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1998-06-26 19:02:40 +0000 |
| commit | d9823e8a6d34c95475ec1d310d44ace95135da1c (patch) | |
| tree | df24a5f9adc15c4c5e3a445d2b5fc8e63d437655 | |
| parent | b92417349c11c7edaee8cbabea9f660436aa7092 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/ppp/lqr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ppp/lqr.c b/usr.sbin/ppp/lqr.c index 10b9f600d85f..6bf1090863c2 100644 --- a/usr.sbin/ppp/lqr.c +++ b/usr.sbin/ppp/lqr.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: lqr.c,v 1.26 1998/06/15 19:05:20 brian Exp $ + * $Id: lqr.c,v 1.27 1998/06/16 19:40:38 brian Exp $ * * o LQR based on RFC1333 * @@ -102,11 +102,11 @@ lqr_RecvEcho(struct fsm *fp, struct mbuf * bp) void lqr_ChangeOrder(struct lqrdata * src, struct lqrdata * dst) { - u_long *sp, *dp; + u_int32_t *sp, *dp; int n; - sp = (u_long *) src; - dp = (u_long *) dst; + sp = (u_int32_t *) src; + dp = (u_int32_t *) dst; for (n = 0; n < sizeof(struct lqrdata) / sizeof(u_int32_t); n++) *dp++ = ntohl(*sp++); } |
