aboutsummaryrefslogtreecommitdiffstats
path: root/reassemble.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2002-12-19 11:22:38 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2002-12-19 11:22:38 +0000
commite4633bc783303fc849b9f3afcc39a588bca50c75 (patch)
treee8a9552faa7c244cac990215d077c4e7ecf4f86c /reassemble.c
parent54ac42f3799f251ba9ed96f47000ccfcecab4b87 (diff)
Update reassemble.c/show_item and all callers to use FT_FRAMENUM for the list of packets corresponding to a reassembled pdu
svn path=/trunk/; revision=6807
Diffstat (limited to 'reassemble.c')
-rw-r--r--reassemble.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/reassemble.c b/reassemble.c
index d2707d371b..c71a0fb421 100644
--- a/reassemble.c
+++ b/reassemble.c
@@ -1,7 +1,7 @@
/* reassemble.c
* Routines for {fragment,segment} reassembly
*
- * $Id: reassemble.c,v 1.27 2002/12/02 23:43:30 guy Exp $
+ * $Id: reassemble.c,v 1.28 2002/12/19 11:22:38 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1179,8 +1179,9 @@ show_fragment(fragment_data *fd, int offset, const fragment_items *fit,
} else {
hf = *(fit->hf_fragment);
}
- fei = proto_tree_add_none_format(ft, hf,
+ fei = proto_tree_add_uint_format(ft, hf,
tvb, offset, fd->len,
+ fd->frame,
"Frame:%u payload:%u-%u",
fd->frame,
offset,
@@ -1212,8 +1213,9 @@ show_fragment(fragment_data *fd, int offset, const fragment_items *fit,
}
} else {
/* nothing of interest for this fragment */
- proto_tree_add_none_format(ft, *(fit->hf_fragment),
+ proto_tree_add_uint_format(ft, *(fit->hf_fragment),
tvb, offset, fd->len,
+ fd->frame,
"Frame:%u payload:%u-%u",
fd->frame,
offset,