aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-29 21:08:34 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-03-29 21:08:34 +0000
commitf3f77342ec1287080f3077192705ac6ac01faf10 (patch)
tree63044614b4e2b8dfae5e9b67965ab2d4bc5d0cc3 /plugins
parente8f211a94c0166fde83c3c04f3ce17a9464fc76d (diff)
Add a missing break.
CID 490 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36401 f5534014-38df-0310-8fa8-9805f1628bb7
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");