]> git.0d.be Git - empathy.git/commitdiff
Fix wrong condition in import_dialog_pidgin_parse_setting().
authorXavier Claessens <xclaesse@src.gnome.org>
Fri, 17 Oct 2008 12:46:42 +0000 (12:46 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Fri, 17 Oct 2008 12:46:42 +0000 (12:46 +0000)
svn path=/trunk/; revision=1610

src/empathy-import-dialog.c

index d245ca32ccf5522ceeda42bd573679e639db1497..b14e224078e4fe3e3443c7b668eee8494d22421b 100644 (file)
@@ -199,7 +199,7 @@ import_dialog_pidgin_parse_setting (AccountData *data,
   /* Search for the map corresponding to setting we are parsing */
   for (i = 0; i < G_N_ELEMENTS (pidgin_mc_map); i++)
     {
-      if (strcmp (data->protocol, pidgin_mc_map[i].protocol) != 0 &&
+      if (strcmp (data->protocol, pidgin_mc_map[i].protocol) == 0 &&
           strcmp (tag_name, pidgin_mc_map[i].pidgin_name) == 0)
         {
           item = pidgin_mc_map + i;