diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2005-06-02 20:55:58 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2005-06-02 20:55:58 +0000 |
commit | 56a9fe6d2aa20d474871f7c6e86a656a51677c9d (patch) | |
tree | 302399483b99c4538315237d284ca147d9e34a53 /epan/dissectors/packet-q931.c | |
parent | b575d9730968bca70e9dd21e7b6b2a342cf43690 (diff) | |
download | wireshark-56a9fe6d2aa20d474871f7c6e86a656a51677c9d.tar.gz wireshark-56a9fe6d2aa20d474871f7c6e86a656a51677c9d.tar.bz2 wireshark-56a9fe6d2aa20d474871f7c6e86a656a51677c9d.zip |
add a generated toplevel line between the connectionless DCE/RPC protocol and the defragmented DCE/RPC content, to better understand what's going on if defragmentation is done.
svn path=/trunk/; revision=14531
Diffstat (limited to 'epan/dissectors/packet-q931.c')
-rw-r--r-- | epan/dissectors/packet-q931.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/dissectors/packet-q931.c b/epan/dissectors/packet-q931.c index ec7fec3d52..dbfb7c58c6 100644 --- a/epan/dissectors/packet-q931.c +++ b/epan/dissectors/packet-q931.c @@ -2483,7 +2483,10 @@ dissect_q931_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, tvb_set_child_real_data_tvbuff(tvb, next_tvb); add_new_data_source(pinfo, next_tvb, "Reassembled Q.931 IEs"); /* Show all fragments. */ - if (tree) show_fragment_seq_tree(fd_head, &q931_frag_items, q931_tree, pinfo, next_tvb); + if (tree) { + proto_item *frag_tree_item; + show_fragment_seq_tree(fd_head, &q931_frag_items, q931_tree, pinfo, next_tvb, &frag_tree_item); + } } else { /* only 1 segment */ next_tvb = tvb_new_subset(tvb, offset, -1, -1); } |