aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-04-08 17:20:05 +0000
committerGuy Harris <guy@alum.mit.edu>2003-04-08 17:20:05 +0000
commitd3daad1bece013f48694ec0f3c26453809c6e495 (patch)
treef60cb3c2b98e7278d98945bc65be4b2bcc17162e /epan
parenta7cd846b4708e535de9ff5e77bd3025f636a2fe3 (diff)
Add "proto_tree_add_none_format()" to the set of functions exported to
plugins. svn path=/trunk/; revision=7423
Diffstat (limited to 'epan')
-rw-r--r--epan/plugins.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/plugins.c b/epan/plugins.c
index af21a5185a..3191ac529c 100644
--- a/epan/plugins.c
+++ b/epan/plugins.c
@@ -1,7 +1,7 @@
/* plugins.c
* plugin routines
*
- * $Id: plugins.c,v 1.63 2003/03/06 09:01:43 sahlberg Exp $
+ * $Id: plugins.c,v 1.64 2003/04/08 17:20:03 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -332,6 +332,7 @@ init_plugins(const char *plugin_dir)
patable.p_proto_item_add_subtree = proto_item_add_subtree;
patable.p_proto_tree_add_item = proto_tree_add_item;
patable.p_proto_tree_add_item_hidden = proto_tree_add_item_hidden;
+ patable.p_proto_tree_add_none_format = proto_tree_add_none_format;
patable.p_proto_tree_add_protocol_format = proto_tree_add_protocol_format;
patable.p_proto_tree_add_bytes = proto_tree_add_bytes;
patable.p_proto_tree_add_bytes_hidden = proto_tree_add_bytes_hidden;