summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui-wizard-gtk/wizard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c
index 156d05f0..d261d4ce 100644
--- a/src/gui-wizard-gtk/wizard.c
+++ b/src/gui-wizard-gtk/wizard.c
@@ -525,7 +525,7 @@ static GList *export_event_config(const char *event_name)
g_hash_table_iter_init(&iter, g_event_config_list);
while (g_hash_table_iter_next(&iter, (void**)&name, (void**)&cfg))
{
- if (strcmp(cfg->name, event_name) != 0)
+ if (strcmp(name, event_name) != 0)
continue;
for (GList *lopt = cfg->options; lopt; lopt = lopt->next)
{