diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-04-17 04:43:58 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-04-17 04:43:58 +0000 |
commit | b54a2d3f11094a29d501dbbdedfa4ff61f17dd1d (patch) | |
tree | d788902215cc6e3e9cc71d4b6000d5beab013df8 /packet-q931.c | |
parent | 773a8fa0e37e8196e944ca39851183a794dfe408 (diff) | |
download | wireshark-b54a2d3f11094a29d501dbbdedfa4ff61f17dd1d.tar.gz wireshark-b54a2d3f11094a29d501dbbdedfa4ff61f17dd1d.tar.bz2 wireshark-b54a2d3f11094a29d501dbbdedfa4ff61f17dd1d.zip |
Neaten up the display of the top-level protocol tree item for a number
IE.
svn path=/trunk/; revision=10625
Diffstat (limited to 'packet-q931.c')
-rw-r--r-- | packet-q931.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-q931.c b/packet-q931.c index 20e375904d..3e09da7165 100644 --- a/packet-q931.c +++ b/packet-q931.c @@ -2,7 +2,7 @@ * Routines for Q.931 frame disassembly * Guy Harris <guy@alum.mit.edu> * - * $Id: packet-q931.c,v 1.75 2004/03/25 23:59:01 guy Exp $ + * $Id: packet-q931.c,v 1.76 2004/04/17 04:43:58 guy Exp $ * * Modified by Andreas Sikkema for possible use with H.323 * @@ -2100,7 +2100,7 @@ dissect_q931_number_ie(tvbuff_t *tvb, int offset, int len, if (len == 0) return; proto_tree_add_item(tree, hfindex, tvb, offset, len, FALSE); - proto_item_append_text(proto_tree_get_parent(tree), " '%s'", tvb_format_text(tvb, offset, len)); + proto_item_append_text(proto_tree_get_parent(tree), ": '%s'", tvb_format_text(tvb, offset, len)); if ( number_plan == 1 ) { if ( e164_info.e164_number_type != NONE ){ |