aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nsrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-nsrp.c')
-rw-r--r--epan/dissectors/packet-nsrp.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/epan/dissectors/packet-nsrp.c b/epan/dissectors/packet-nsrp.c
index 9eec836730..40ad06ec02 100644
--- a/epan/dissectors/packet-nsrp.c
+++ b/epan/dissectors/packet-nsrp.c
@@ -145,8 +145,8 @@ static const value_string nsrp_encflag_vals[] = {
static gint ett_nsrp = -1;
/* Code to actually dissect the packets */
-static void
-dissect_nsrp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+static int
+dissect_nsrp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
proto_item *ti;
proto_tree *nsrp_tree = NULL;
@@ -345,6 +345,7 @@ dissect_nsrp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
}
+ return tvb_captured_length(tvb);
}
@@ -509,7 +510,7 @@ proto_reg_handoff_nsrp(void)
{
dissector_handle_t nsrp_handle;
- nsrp_handle = create_dissector_handle(dissect_nsrp, proto_nsrp);
+ nsrp_handle = new_create_dissector_handle(dissect_nsrp, proto_nsrp);
dissector_add_uint("ethertype", ETHERTYPE_NSRP, nsrp_handle);
}