- sl_authe_params = g_slist_append (sl_authe_params, config->plugin_name);
- sl_authe_params = g_slist_concat (sl_authe_params, config->sl_options);
+ sl_authe_params = g_slist_append (sl_authe_params, g_strdup (config->plugin_name));
+
+ sl_loop = g_slist_nth (config->sl_options, 0);
+ while (sl_loop != NULL)
+ {
+ sl_authe_params = g_slist_append (sl_authe_params, g_strdup ((const gchar *)sl_loop->data));
+
+ sl_loop = g_slist_next (sl_loop);
+ }