summaryrefslogtreecommitdiffstats
path: root/contrib/traceroute
diff options
context:
space:
mode:
authortuexen <tuexen@FreeBSD.org>2015-05-31 08:10:35 +0000
committertuexen <tuexen@FreeBSD.org>2015-05-31 08:10:35 +0000
commitb00b964fabc9d7f6e19bf7935e1303745d48fb7a (patch)
tree9966084b97cc1a8a73262abe601eb7c7f307d5b0 /contrib/traceroute
parenta20d17917f135d48373e2b4d4d17dadd06ba3098 (diff)
downloadFreeBSD-src-b00b964fabc9d7f6e19bf7935e1303745d48fb7a.zip
FreeBSD-src-b00b964fabc9d7f6e19bf7935e1303745d48fb7a.tar.gz
When the packet verification fails in verbose mode, print the correct
number of words in host byte order. Also remove a stray 'x'. MFC after: 3 days
Diffstat (limited to 'contrib/traceroute')
-rw-r--r--contrib/traceroute/traceroute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/traceroute/traceroute.c b/contrib/traceroute/traceroute.c
index 040d04d..8ecacfe 100644
--- a/contrib/traceroute/traceroute.c
+++ b/contrib/traceroute/traceroute.c
@@ -1346,8 +1346,8 @@ packet_ok(register u_char *buf, int cc, register struct sockaddr_in *from,
Printf("\n%d bytes from %s to ", cc, inet_ntoa(from->sin_addr));
Printf("%s: icmp type %d (%s) code %d\n",
inet_ntoa(ip->ip_dst), type, pr_type(type), icp->icmp_code);
- for (i = 4; i < cc ; i += sizeof(*lp))
- Printf("%2d: x%8.8x\n", i, *lp++);
+ for (i = 4; i <= cc - ICMP_MINLEN; i += sizeof(*lp))
+ Printf("%2d: %8.8x\n", i, ntohl(*lp++));
}
#endif
return(0);
OpenPOWER on IntegriCloud