empathy r1610 - trunk/src
- From: xclaesse svn gnome org
- To: svn-commits-list gnome org
- Subject: empathy r1610 - trunk/src
- Date: Fri, 17 Oct 2008 12:46:42 +0000 (UTC)
Author: xclaesse
Date: Fri Oct 17 12:46:42 2008
New Revision: 1610
URL: http://svn.gnome.org/viewvc/empathy?rev=1610&view=rev
Log:
Fix wrong condition in import_dialog_pidgin_parse_setting().
Modified:
trunk/src/empathy-import-dialog.c
Modified: trunk/src/empathy-import-dialog.c
==============================================================================
--- trunk/src/empathy-import-dialog.c (original)
+++ trunk/src/empathy-import-dialog.c Fri Oct 17 12:46:42 2008
@@ -199,7 +199,7 @@
/* 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;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]