aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bssgp.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2008-12-03 07:08:33 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2008-12-03 07:08:33 +0000
commite7ca77a5cc0812286e22bb5c90a8505204108a37 (patch)
tree34ba0e8bc3abd68b7ca63b4d1168d15eaf53a84a /epan/dissectors/packet-bssgp.c
parente6647dff81e1c3a36c69b753d14fb38c327ba0bd (diff)
Fix for bug 3085:
Correct interpretation of QoS T-bit. svn path=/trunk/; revision=26908
Diffstat (limited to 'epan/dissectors/packet-bssgp.c')
-rw-r--r--epan/dissectors/packet-bssgp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/epan/dissectors/packet-bssgp.c b/epan/dissectors/packet-bssgp.c
index 02a414cd79..78207c46e9 100644
--- a/epan/dissectors/packet-bssgp.c
+++ b/epan/dissectors/packet-bssgp.c
@@ -2777,9 +2777,7 @@ decode_iei_qos_profile(bssgp_ie_t *ie, build_info_t *bi, int ie_start_offset) {
value = get_masked_guint8(data, MASK_T_BIT);
pi = proto_tree_add_bitfield8(tf, bi->tvb, bi->offset, MASK_T_BIT);
proto_item_append_text(pi, "T: The SDU contains %s",
- value == 0 ?
- "data" :
- "signalling (e.g. related to GMM)");
+ value == 0 ? "signalling (e.g. related to GMM)" : "data");
value = get_masked_guint8(data, MASK_A_BIT);
pi = proto_tree_add_bitfield8(tf, bi->tvb, bi->offset, MASK_A_BIT);