aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/stats_tree
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-02-28 11:10:49 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-02-28 11:10:49 +0000
commiteaba6357cba3b40379227d3aac7473e12472d423 (patch)
treef1408d04aa27b8569495d75314936a4caaeccf9f /plugins/stats_tree
parent6421106005e31dc777210748d5223c7b3d86a3b4 (diff)
downloadwireshark-eaba6357cba3b40379227d3aac7473e12472d423.tar.gz
wireshark-eaba6357cba3b40379227d3aac7473e12472d423.tar.bz2
wireshark-eaba6357cba3b40379227d3aac7473e12472d423.zip
Adapt the stats_tree example plugin to the last changes
svn path=/trunk/; revision=13550
Diffstat (limited to 'plugins/stats_tree')
-rw-r--r--plugins/stats_tree/stats_tree_plugin.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/stats_tree/stats_tree_plugin.c b/plugins/stats_tree/stats_tree_plugin.c
index ca7e53567c..0abc1c8042 100644
--- a/plugins/stats_tree/stats_tree_plugin.c
+++ b/plugins/stats_tree/stats_tree_plugin.c
@@ -41,10 +41,11 @@ G_MODULE_EXPORT void plugin_init(plugin_address_table_t *pat _U_ ) {
/* initialise the table of pointers needed in Win32 DLLs */
plugin_address_table_init(pat);
- register_pinfo_stat_trees();
}
-G_MODULE_EXPORT void plugin_reg_handoff(void)
+G_MODULE_EXPORT void plugin_register_tap_listener(void)
{
+ register_pinfo_stat_trees();
}
+
#endif