aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugin_api.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-05-01 21:10:43 +0000
committerGuy Harris <guy@alum.mit.edu>2003-05-01 21:10:43 +0000
commitf9037afd448447bfda1050e5cb843193362d84e3 (patch)
treed2a3e452bd0dbfb24c29bc8a4301e5a873d3c7e8 /plugins/plugin_api.c
parent687128c3f060b17c60323ebf3d28c54dd130394e (diff)
downloadwireshark-f9037afd448447bfda1050e5cb843193362d84e3.tar.gz
wireshark-f9037afd448447bfda1050e5cb843193362d84e3.tar.bz2
wireshark-f9037afd448447bfda1050e5cb843193362d84e3.zip
From Matthijs Melchior: don't export functions also implemented as
macros, and do export "except_pop()" and "except_setup_try()". svn path=/trunk/; revision=7628
Diffstat (limited to 'plugins/plugin_api.c')
-rw-r--r--plugins/plugin_api.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/plugin_api.c b/plugins/plugin_api.c
index 25ea89ee96..2efba30562 100644
--- a/plugins/plugin_api.c
+++ b/plugins/plugin_api.c
@@ -1,7 +1,7 @@
/* plugin_api.c
* Routines for Ethereal plugins.
*
- * $Id: plugin_api.c,v 1.49 2003/04/30 23:40:43 guy Exp $
+ * $Id: plugin_api.c,v 1.50 2003/05/01 21:10:43 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -248,12 +248,10 @@ plugin_address_table_init(plugin_address_table_t *pat)
p_except_throwd = pat->p_except_throwd;
p_except_throwf = pat->p_except_throwf;
p_except_unhandled_catcher = pat->p_except_unhandled_catcher;
- p_except_code = pat->p_except_code;
- p_except_group = pat->p_except_group;
- p_except_message = pat->p_except_message;
- p_except_data = pat->p_except_data;
p_except_take_data = pat->p_except_take_data;
p_except_set_allocator = pat->p_except_set_allocator;
p_except_alloc = pat->p_except_alloc;
p_except_free = pat->p_except_free;
+ p_except_pop = pat->p_except_pop;
+ p_except_setup_try = pat->p_except_setup_try;
}