summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-gsm_cbch.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-gsm_cbch.c')
-rw-r--r--epan/dissectors/packet-gsm_cbch.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/epan/dissectors/packet-gsm_cbch.c b/epan/dissectors/packet-gsm_cbch.c
index 82a0c1d853..f3f346797d 100644
--- a/epan/dissectors/packet-gsm_cbch.c
+++ b/epan/dissectors/packet-gsm_cbch.c
@@ -369,8 +369,8 @@ dissect_schedule_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *top_tree
}
}
-static void
-dissect_cbch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+static int
+dissect_cbch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
fragment_head *frag_data = NULL;
guint8 octet, lb, lpd, seq_num;
@@ -473,6 +473,7 @@ dissect_cbch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
expert_add_info(pinfo, lpd_item, &ei_gsm_cbch_lpd);
call_dissector(data_handle, tvb, pinfo, cbch_tree);
}
+ return tvb_captured_length(tvb);
}
/* Register the protocol with Wireshark */
@@ -644,7 +645,7 @@ proto_register_gsm_cbch(void)
expert_register_field_array(expert_cbch, ei, array_length(ei));
/* subdissector code */
- register_dissector("gsm_cbch", dissect_cbch, proto_cbch);
+ new_register_dissector("gsm_cbch", dissect_cbch, proto_cbch);
register_init_routine(cbch_defragment_init);
register_cleanup_routine(cbch_defragment_cleanup);