aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/pcapng_module.h
diff options
context:
space:
mode:
Diffstat (limited to 'wiretap/pcapng_module.h')
-rw-r--r--wiretap/pcapng_module.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/pcapng_module.h b/wiretap/pcapng_module.h
index aa7f9c40c9..7cd33e356b 100644
--- a/wiretap/pcapng_module.h
+++ b/wiretap/pcapng_module.h
@@ -58,7 +58,7 @@ void register_pcapng_block_type_handler(guint block_type, block_reader read,
/*
* Handler routine for pcap-ng option type.
*/
-typedef gboolean (*option_handler)(gboolean, guint, guint8 *, int *, gchar **);
+typedef gboolean (*option_handler_fn)(gboolean, guint, guint8 *, int *, gchar **);
/*
* Register a handler for a pcap-ng option code for a particular block
@@ -66,7 +66,7 @@ typedef gboolean (*option_handler)(gboolean, guint, guint8 *, int *, gchar **);
*/
WS_DLL_PUBLIC
void register_pcapng_option_handler(guint block_type, guint option_code,
- option_handler handle);
+ option_handler_fn hfunc);
#endif /* __PCAP_MODULE_H__ */