aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-10-17 20:46:42 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-10-17 20:46:42 +0800
commit4c658b6bf19014cb1d9a5a8395ccd5cb0584ee90 (patch)
tree73d25335b55e7dca54e15dd22c205a797d9f1f08
parentd88dc97095a5054eb515702daa7e4092678698c0 (diff)
downloadgsoc2013-empathy-4c658b6bf19014cb1d9a5a8395ccd5cb0584ee90.tar
gsoc2013-empathy-4c658b6bf19014cb1d9a5a8395ccd5cb0584ee90.tar.gz
gsoc2013-empathy-4c658b6bf19014cb1d9a5a8395ccd5cb0584ee90.tar.bz2
gsoc2013-empathy-4c658b6bf19014cb1d9a5a8395ccd5cb0584ee90.tar.lz
gsoc2013-empathy-4c658b6bf19014cb1d9a5a8395ccd5cb0584ee90.tar.xz
gsoc2013-empathy-4c658b6bf19014cb1d9a5a8395ccd5cb0584ee90.tar.zst
gsoc2013-empathy-4c658b6bf19014cb1d9a5a8395ccd5cb0584ee90.zip
Fix wrong condition in import_dialog_pidgin_parse_setting().
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@1610 4ee84921-47dd-4033-b63a-18d7a039a3e4
-rw-r--r--src/empathy-import-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-import-dialog.c b/src/empathy-import-dialog.c
index d245ca32c..b14e22407 100644
--- a/src/empathy-import-dialog.c
+++ b/src/empathy-import-dialog.c
@@ -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;