aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-megaco.c
diff options
context:
space:
mode:
authorrbalint <rbalint@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-13 16:51:40 +0000
committerrbalint <rbalint@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-13 16:51:40 +0000
commit5e0355b50c8e67dc6b0f94f8b754f243945f8d85 (patch)
treefdbd32463fd8c88ddc533c4d4e6741a7220f350b /epan/dissectors/packet-megaco.c
parent84975cea9b3384cba69a286b36f38ade6328a67f (diff)
Fix inverted interpretation of global_megaco_dissect_tree.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27716 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-megaco.c')
-rw-r--r--epan/dissectors/packet-megaco.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-megaco.c b/epan/dissectors/packet-megaco.c
index 3695855aa9..bb90f425e9 100644
--- a/epan/dissectors/packet-megaco.c
+++ b/epan/dissectors/packet-megaco.c
@@ -299,7 +299,7 @@ my_proto_tree_add_string(proto_tree *tree, int hfindex, tvbuff_t *tvb,
proto_item *pi;
pi = proto_tree_add_string(tree, hfindex, tvb, start, length, value);
- if (global_megaco_dissect_tree) {
+ if (!global_megaco_dissect_tree) {
PROTO_ITEM_SET_HIDDEN(pi);
}