aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/file-btsnoop.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-08-19 12:33:06 +0200
committerAnders Broman <a.broman58@gmail.com>2015-08-19 13:00:55 +0000
commitd470ff123832530afaddba91f399870b52648bce (patch)
treee66c995154e7754061d3b812bf9243dcc86a14f0 /epan/dissectors/file-btsnoop.c
parentfa40025a7e2e9ddc5590515989074df1662dcc82 (diff)
btsnoop: Missing break in switch (CID 1316606)
Change-Id: I105da06b7161a5b5f0cc2b4ce5303c4d5c989280 Reviewed-on: https://code.wireshark.org/review/10126 Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Diffstat (limited to 'epan/dissectors/file-btsnoop.c')
-rw-r--r--epan/dissectors/file-btsnoop.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/file-btsnoop.c b/epan/dissectors/file-btsnoop.c
index ed0afdd311..b7fe228117 100644
--- a/epan/dissectors/file-btsnoop.c
+++ b/epan/dissectors/file-btsnoop.c
@@ -232,6 +232,7 @@ dissect_btsnoop(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data
case 2002: /* Simulator */
/* Not implemented yet */
proto_tree_add_expert(payload_tree, pinfo, &ei_not_implemented_yet, tvb, offset, length);
+ break;
default:
/* Unknown */
proto_tree_add_expert(payload_tree, pinfo, &ei_unknown_data, tvb, offset, length);