aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.h
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-09-11 09:06:48 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-09-11 09:06:48 +0000
commita406bb1a50cbd4c7cd42e83ef97365e6d6f8aa6f (patch)
tree91446968fdc200ab6bbde2633e5a6695b1fcdbe4 /epan/packet.h
parent27fb6880c40908764cac81332bd31207903b5fb6 (diff)
Add data parameter to dissector_try_uint_new
svn path=/trunk/; revision=44874
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/packet.h b/epan/packet.h
index daff3ec51d..d7c2515406 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -216,11 +216,11 @@ extern gboolean dissector_try_uint(dissector_table_t sub_dissectors,
call the dissector with the arguments supplied, and return TRUE,
otherwise return FALSE. */
extern gboolean dissector_try_uint_new(dissector_table_t sub_dissectors,
- const guint32 uint_val, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, const gboolean add_proto_name);
+ const guint32 uint_val, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, const gboolean add_proto_name, void *data);
/* For old code that hasn't yet been changed. */
#define dissector_try_port_new(sub_dissectors, uint_val, tvb, pinfo, tree, add_proto_name) \
- dissector_try_uint_new(sub_dissectors, uint_val, tvb, pinfo, tree, add_proto_name)
+ dissector_try_uint_new(sub_dissectors, uint_val, tvb, pinfo, tree, add_proto_name, NULL)
/* Look for a given value in a given uint dissector table and, if found,
return the dissector handle for that value. */