From Abhik Sarkar via bug #2130: Mistake in Readme.stats_tree

Me: Remove change of 0 to NULL in call to stats_tree_create_node from patch


svn path=/trunk/; revision=23935
This commit is contained in:
Stephen Fisher 2007-12-21 21:55:10 +00:00
parent 382bedb6ca
commit c5239888fc
1 changed files with 1 additions and 1 deletions

View File

@ -119,8 +119,8 @@ G_MODULE_EXPORT void plugin_register_tap_listener(void) {
stats_tree_register("udp", /* the proto we are going to "tap" */
"udp_terms", /* the abbreviation for this tree (to be used as -z udp_terms,tree) */
st_str_udp_term, /* the name of the menu and window (use "/" for sub menus)*/
udp_term_stats_tree_packet, /* the per packet callback */
udp_term_stats_tree_init, /* the init callback */
ip_hosts_stats_tree_init, /* the per packet callback */
NULL ); /* the cleanup callback (in this case there isn't) */
}