aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2000-11-18 09:59:04 +0000
committerGraham Bloice <graham.bloice@trihedral.com>2000-11-18 09:59:04 +0000
commit56a0c40c18271046d22bffcc5db10cfb16a2bf6c (patch)
tree9c3b6c3e07e3b6a269b0df7a22deb746b0aac3aa /gtk
parent67f0e0b41b0320342bfadccba68a0878a4911caa (diff)
Corrected wrong function call in plugins_enable_cb
svn path=/trunk/; revision=2657
Diffstat (limited to 'gtk')
-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);