aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mqtt.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2017-11-08 11:46:59 +0100
committerStig Bjørlykke <stig@bjorlykke.org>2017-11-08 10:52:18 +0000
commit465f75b5292e4c57762200ca1b87cdb225dd6484 (patch)
treee13e7262c9b5af0f24be6d9c08ec5d2352d08d8e /epan/dissectors/packet-mqtt.c
parent4a1f8f5f27e165aeba0b1441f7f1858a9c60fff7 (diff)
MQTT: add a missing break
Change-Id: I0a17fd44607a5a7452a7c2789140cce7cdcbd17b Reviewed-on: https://code.wireshark.org/review/24298 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'epan/dissectors/packet-mqtt.c')
-rw-r--r--epan/dissectors/packet-mqtt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-mqtt.c b/epan/dissectors/packet-mqtt.c
index a7a0ee13d9..71820dc0ed 100644
--- a/epan/dissectors/packet-mqtt.c
+++ b/epan/dissectors/packet-mqtt.c
@@ -474,6 +474,7 @@ static guint32 dissect_mqtt_properties(tvbuff_t *tvb, proto_tree *mqtt_tree, gui
case PROP_MAXIMUM_QOS:
proto_tree_add_item(mqtt_prop_tree, hf_mqtt_prop_max_qos, tvb, offset, 1, ENC_BIG_ENDIAN);
offset += 1;
+ break;
case PROP_SERVER_KEEP_ALIVE:
case PROP_RECEIVE_MAXIMUM:
case PROP_TOPIC_ALIAS_MAXIMUM: