aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2007-12-21 21:55:10 +0000
committerStephen Fisher <steve@stephen-fisher.com>2007-12-21 21:55:10 +0000
commitc5239888fc812267484488e85dd57597e57179ec (patch)
treead29bfe2fc11834eca105d1721bdc0109a491705 /doc
parent382bedb6cadc864440e99f7d6996c0ff1344b4b0 (diff)
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
Diffstat (limited to 'doc')
-rw-r--r--doc/README.stats_tree2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/README.stats_tree b/doc/README.stats_tree
index e59d51b714..6a0dad8d30 100644
--- a/doc/README.stats_tree
+++ b/doc/README.stats_tree
@@ -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) */
}