aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipv6.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-05-24 07:52:31 +0000
committerGuy Harris <guy@alum.mit.edu>2000-05-24 07:52:31 +0000
commit2a0cd3825428646d640b6ea27660bb5f4d05589b (patch)
treeeeabb252d5b475a046343159983f8513213bcd6a /packet-ipv6.c
parentd7b9c90614f694f4c4ffd3b3e33ae994b7319c29 (diff)
Display the fragment offset in decimal (as the IPv4 dissector does)
rather than hex. svn path=/trunk/; revision=1997
Diffstat (limited to 'packet-ipv6.c')
-rw-r--r--packet-ipv6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ipv6.c b/packet-ipv6.c
index 4753315e3e..8fc4ff80d5 100644
--- a/packet-ipv6.c
+++ b/packet-ipv6.c
@@ -1,7 +1,7 @@
/* packet-ipv6.c
* Routines for IPv6 packet disassembly
*
- * $Id: packet-ipv6.c,v 1.36 2000/05/11 08:15:14 gram Exp $
+ * $Id: packet-ipv6.c,v 1.37 2000/05/24 07:52:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -147,7 +147,7 @@ dissect_frag6(const u_char *pd, int offset, frame_data *fd, proto_tree *tree,
*fragstart = ntohs(frag.ip6f_offlg) & 0xfff8;
if (check_col(fd, COL_INFO)) {
col_add_fstr(fd, COL_INFO,
- "IPv6 fragment (nxt=%s (0x%02x) off=0x%04x id=0x%x)",
+ "IPv6 fragment (nxt=%s (0x%02x) off=%u id=0x%x)",
ipprotostr(frag.ip6f_nxt), frag.ip6f_nxt,
*fragstart, frag.ip6f_ident);
}