diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-10-17 20:46:42 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-10-17 20:46:42 +0800 |
commit | 6f698f44bc200350f007f0ea13e2cb45c122b244 (patch) | |
tree | 73d25335b55e7dca54e15dd22c205a797d9f1f08 /src | |
parent | 0886417e0321abc749a92f708c3ec50cec3dcc36 (diff) | |
download | gsoc2013-empathy-6f698f44bc200350f007f0ea13e2cb45c122b244.tar gsoc2013-empathy-6f698f44bc200350f007f0ea13e2cb45c122b244.tar.gz gsoc2013-empathy-6f698f44bc200350f007f0ea13e2cb45c122b244.tar.bz2 gsoc2013-empathy-6f698f44bc200350f007f0ea13e2cb45c122b244.tar.lz gsoc2013-empathy-6f698f44bc200350f007f0ea13e2cb45c122b244.tar.xz gsoc2013-empathy-6f698f44bc200350f007f0ea13e2cb45c122b244.tar.zst gsoc2013-empathy-6f698f44bc200350f007f0ea13e2cb45c122b244.zip |
Fix wrong condition in import_dialog_pidgin_parse_setting().
svn path=/trunk/; revision=1610
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-import-dialog.c | 2 |
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; |