aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-03-29 21:08:34 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-03-29 21:08:34 +0000
commit2b81b097e547643fceb7bda1e2ac39fe6687a01a (patch)
tree63044614b4e2b8dfae5e9b67965ab2d4bc5d0cc3 /plugins
parentbc0fbb792a6000c5a6cb6926810e8b7b25a51637 (diff)
Add a missing break.
CID 490 svn path=/trunk/; revision=36401
Diffstat (limited to 'plugins')
-rw-r--r--plugins/wimax/mac_mgmt_msg_decoder.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/wimax/mac_mgmt_msg_decoder.c b/plugins/wimax/mac_mgmt_msg_decoder.c
index 8531ec3e2d..4905d5c1a9 100644
--- a/plugins/wimax/mac_mgmt_msg_decoder.c
+++ b/plugins/wimax/mac_mgmt_msg_decoder.c
@@ -301,6 +301,7 @@ void dissect_mac_mgmt_msg_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_tree
case MAC_MGMT_MSG_DSD_RSP:
/* Dynamic Service Deletion response message handler */
dissect_mac_mgmt_msg_dsd_rsp_decoder(tvb, pinfo, tree);
+ break;
case MAC_MGMT_MSG_MCA_REQ:
/* find the Multicast Assignment request message handler */
mgt_msg_handle = find_dissector("mac_mgmt_msg_mca_req_handler");