aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/plugins_dlg.c
diff options
context:
space:
mode:
authorgrahamb <grahamb@f5534014-38df-0310-8fa8-9805f1628bb7>2000-11-18 09:59:04 +0000
committergrahamb <grahamb@f5534014-38df-0310-8fa8-9805f1628bb7>2000-11-18 09:59:04 +0000
commit92c209a221b63e9fd8b07684cec124efc0e01597 (patch)
tree9c3b6c3e07e3b6a269b0df7a22deb746b0aac3aa /gtk/plugins_dlg.c
parentf29d53fdbf5002c3760bbf1339fe21f772b94702 (diff)
Corrected wrong function call in plugins_enable_cb
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2657 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/plugins_dlg.c')
-rw-r--r--gtk/plugins_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/plugins_dlg.c b/gtk/plugins_dlg.c
index 1d6a72230e..459f972fab 100644
--- a/gtk/plugins_dlg.c
+++ b/gtk/plugins_dlg.c
@@ -1,7 +1,7 @@
/* plugins_dlg.c
* Dialog boxes for plugins
*
- * $Id: plugins_dlg.c,v 1.20 2000/11/15 09:37:53 guy Exp $
+ * $Id: plugins_dlg.c,v 1.21 2000/11/18 09:59:04 grahamb Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -248,7 +248,7 @@ plugins_enable_cb(GtkWidget *button, gpointer clist)
/* already enabled */
if (strcmp(selected_enabled, "Yes") == 0) return;
- errmsg = init_plugin(selected_name, selected_version);
+ errmsg = enable_plugin(selected_name, selected_version);
if (errmsg != NULL)
{
simple_dialog(ESD_TYPE_CRIT, NULL, errmsg);