aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>1998-11-15 18:10:14 +0000
committerDoug Rabson <dfr@FreeBSD.org>1998-11-15 18:10:14 +0000
commit48a39a495a8dc48d69ba5bd5c7a89d1d4a9e1f9f (patch)
tree2adbf8b16398684bcef1ebc90babf3b111cddcd8
parent2f2dcad41b81e7972e30d9d19205219e16274e1c (diff)
Notes
-rw-r--r--sys/netinet/ip_input.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c
index f32f6f55ad9e2..4af42f00f6790 100644
--- a/sys/netinet/ip_input.c
+++ b/sys/netinet/ip_input.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ip_input.c 8.2 (Berkeley) 1/4/94
- * $Id: ip_input.c,v 1.104 1998/10/27 09:19:03 dfr Exp $
+ * $Id: ip_input.c,v 1.105 1998/11/11 21:17:59 dg Exp $
* $ANA: ip_input.c,v 1.5 1996/09/18 14:34:59 wollman Exp $
*/
@@ -1242,7 +1242,7 @@ ip_srcroute()
*(mtod(m, struct in_addr *)) = *p--;
#ifdef DIAGNOSTIC
if (ipprintfs)
- printf(" hops %lx", ntohl(mtod(m, struct in_addr *)->s_addr));
+ printf(" hops %x", (int)ntohl(mtod(m, struct in_addr *)->s_addr));
#endif
/*
@@ -1262,7 +1262,7 @@ ip_srcroute()
while (p >= ip_srcrt.route) {
#ifdef DIAGNOSTIC
if (ipprintfs)
- printf(" %lx", ntohl(q->s_addr));
+ printf(" %x", (int)ntohl(q->s_addr));
#endif
*q++ = *p--;
}
@@ -1272,7 +1272,7 @@ ip_srcroute()
*q = ip_srcrt.dst;
#ifdef DIAGNOSTIC
if (ipprintfs)
- printf(" %lx\n", ntohl(q->s_addr));
+ printf(" %x\n", (int)ntohl(q->s_addr));
#endif
return (m);
}