[Xfce4-commits] <parole:master> Fix bug in the active plugin saved list.

Ali Abdallah noreply at xfce.org
Mon Nov 30 11:22:01 CET 2009


Updating branch refs/heads/master
         to c3fb3308fe2845228f4d2b884fdf8b434fbef8af (commit)
       from dbe45dd2bb16d1afaa3dd46cc53e7fdfae240bb1 (commit)

commit c3fb3308fe2845228f4d2b884fdf8b434fbef8af
Author: Ali Abdallah <aliov at xfce.org>
Date:   Sun Nov 29 17:12:52 2009 +0100

    Fix bug in the active plugin saved list.

 src/parole-plugins-manager.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/parole-plugins-manager.c b/src/parole-plugins-manager.c
index a30faf2..d10a31a 100644
--- a/src/parole-plugins-manager.c
+++ b/src/parole-plugins-manager.c
@@ -214,7 +214,7 @@ parole_plugins_manager_save_rc (gchar *filename, gboolean active)
 	
 	for ( i = 0; i < num; i++)
 	{
-	    if ( g_strcmp0 (saved_plugins[i], filename) )
+	    if ( g_strcmp0 (saved_plugins[i], filename) != 0 )
 		plugins_rc[i] = g_strdup (saved_plugins[i]);
 	    else
 		plugins_rc[i] = NULL;



More information about the Xfce4-commits mailing list