aboutsummaryrefslogtreecommitdiffstats
path: root/epan/plugins.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-04-30 23:40:43 +0000
committerGuy Harris <guy@alum.mit.edu>2003-04-30 23:40:43 +0000
commit0242a26c591b1bf55fb5971adf9ce8369684ca99 (patch)
tree92ea17d9f3f940e228a1859d1ed6845b941a6add /epan/plugins.c
parent995c9980e7426ccd4b9bb10b2027ba074661efa7 (diff)
The typedefs in plugins/plugin_table.h must have "addr_" in front of the
function name; make it so. Eliminate the duplicate entry for "except_throw" and the duplicate code for it. svn path=/trunk/; revision=7618
Diffstat (limited to 'epan/plugins.c')
-rw-r--r--epan/plugins.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/plugins.c b/epan/plugins.c
index ac39197f81..bf90060ec0 100644
--- a/epan/plugins.c
+++ b/epan/plugins.c
@@ -1,7 +1,7 @@
/* plugins.c
* plugin routines
*
- * $Id: plugins.c,v 1.67 2003/04/30 19:19:13 guy Exp $
+ * $Id: plugins.c,v 1.68 2003/04/30 23:40:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -524,7 +524,6 @@ init_plugins(const char *plugin_dir)
patable.p_except_init = except_init;
patable.p_except_deinit = except_deinit;
patable.p_except_rethrow = except_rethrow;
- patable.p_except_throw = except_throw;
patable.p_except_throwd = except_throwd;
patable.p_except_throwf = except_throwf;
patable.p_except_unhandled_catcher = except_unhandled_catcher;