summaryrefslogtreecommitdiff
path: root/packet-x25.c
diff options
context:
space:
mode:
authorOlivier Abad <oabad@noos.fr>2003-10-07 18:19:59 +0000
committerOlivier Abad <oabad@noos.fr>2003-10-07 18:19:59 +0000
commit7144508132cd09e71213a39dec3a913dd79ce345 (patch)
tree030bb7ee591a0cdc717dfba6be6b5bb8833c7182 /packet-x25.c
parentb93c394c98b264fd5cc0ca051693a19c17eb3a98 (diff)
downloadwireshark-7144508132cd09e71213a39dec3a913dd79ce345.tar.gz
Put the "X.264 protocol identifier" and "X.264 sharing strategy" fields
in the "User data" subtree. svn path=/trunk/; revision=8642
Diffstat (limited to 'packet-x25.c')
-rw-r--r--packet-x25.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-x25.c b/packet-x25.c
index a10dba162d..9e5496bf6b 100644
--- a/packet-x25.c
+++ b/packet-x25.c
@@ -2,7 +2,7 @@
* Routines for X.25 packet disassembly
* Olivier Abad <oabad@noos.fr>
*
- * $Id: packet-x25.c,v 1.84 2003/04/20 11:36:16 guy Exp $
+ * $Id: packet-x25.c,v 1.85 2003/10/07 18:19:59 oabad Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1717,11 +1717,11 @@ dissect_x25_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
}
prt_id = tvb_get_guint8(tvb, localoffset+2);
if (userdata_tree) {
- proto_tree_add_text(x25_tree, tvb, localoffset+2, 1,
+ proto_tree_add_text(userdata_tree, tvb, localoffset+2, 1,
"X.264 protocol identifier: %s",
val_to_str(prt_id, prt_id_vals,
"Unknown (0x%02X)"));
- proto_tree_add_text(x25_tree, tvb, localoffset+3, 1,
+ proto_tree_add_text(userdata_tree, tvb, localoffset+3, 1,
"X.264 sharing strategy: %s",
val_to_str(tvb_get_guint8(tvb, localoffset+3),
sharing_strategy_vals, "Unknown (0x%02X)"));