aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipv6.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-10 11:27:57 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-10 11:27:57 +0000
commit381c21783e5a3d0f406ee3ddbb328413464c4ef8 (patch)
tree4016e78c363af0de71ba41cceb67045adf3f9e5f /packet-ipv6.c
parent65b96f652dc2dc47ed8f98ecadc87b45b9595254 (diff)
As per a comment from Ronnie Sahlberg, display TCP sequence numbers in
the list of segments in a desegmented PDU as unsigned, rather than signed. Fix some other displays of unsigned quantities with "%d" while we're at it. svn path=/trunk/; revision=4516
Diffstat (limited to 'packet-ipv6.c')
-rw-r--r--packet-ipv6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ipv6.c b/packet-ipv6.c
index 96385bab20..42c15a9d94 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.71 2001/12/10 00:25:29 guy Exp $
+ * $Id: packet-ipv6.c,v 1.72 2002/01/10 11:27:56 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -850,7 +850,7 @@ again:
}
fei = proto_tree_add_none_format(ft, hf,
tvb, 0, 0,
- "Frame:%d payload:%d-%d",
+ "Frame:%u payload:%u-%u",
ipfd->frame,
ipfd->offset,
ipfd->offset+ipfd->len-1
@@ -880,7 +880,7 @@ again:
/* nothing of interest for this fragment */
proto_tree_add_none_format(ft, hf_ipv6_fragment,
tvb, 0, 0,
- "Frame:%d payload:%d-%d",
+ "Frame:%u payload:%u-%u",
ipfd->frame,
ipfd->offset,
ipfd->offset+ipfd->len-1