aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.stats_tree
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-21 21:55:10 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-21 21:55:10 +0000
commitd4431ab4b5422bba573a35e9bd46ce879e56e635 (patch)
treead29bfe2fc11834eca105d1721bdc0109a491705 /doc/README.stats_tree
parent6cb4f5db3eb7c540a8ef79c27d52e9a65ddfc6b7 (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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23935 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'doc/README.stats_tree')
-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) */
}