diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2010-12-22 19:58:38 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2010-12-22 19:58:38 +0800 |
commit | e6172665de111c2b32d6f16679add6f581c66a02 (patch) | |
tree | 46633ced43eba0bf62fc67298769ed103435b266 /libempathy/empathy-account-settings.c | |
parent | 9f3eabf31f324237fd99fca8762a04bc98cd7630 (diff) | |
download | gsoc2013-empathy-e6172665de111c2b32d6f16679add6f581c66a02.tar gsoc2013-empathy-e6172665de111c2b32d6f16679add6f581c66a02.tar.gz gsoc2013-empathy-e6172665de111c2b32d6f16679add6f581c66a02.tar.bz2 gsoc2013-empathy-e6172665de111c2b32d6f16679add6f581c66a02.tar.lz gsoc2013-empathy-e6172665de111c2b32d6f16679add6f581c66a02.tar.xz gsoc2013-empathy-e6172665de111c2b32d6f16679add6f581c66a02.tar.zst gsoc2013-empathy-e6172665de111c2b32d6f16679add6f581c66a02.zip |
account-settings: use tp_account_get_path_suffix
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy/empathy-account-settings.c')
-rw-r--r-- | libempathy/empathy-account-settings.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libempathy/empathy-account-settings.c b/libempathy/empathy-account-settings.c index d84b14d6c..c669753ae 100644 --- a/libempathy/empathy-account-settings.c +++ b/libempathy/empathy-account-settings.c @@ -460,7 +460,7 @@ empathy_account_settings_try_migrating_password (EmpathyAccountSettings *self) { EmpathyAccountSettingsPriv *priv = GET_PRIV (self); const GValue *v; - const gchar *account_id, *password; + const gchar *password; const gchar *unset[] = { "password", NULL }; GHashTable *empty; @@ -471,11 +471,9 @@ empathy_account_settings_try_migrating_password (EmpathyAccountSettings *self) /* mission-control still has our password, although the CM * supports SASL. Let's try migrating it. */ - account_id = tp_proxy_get_object_path (priv->account) - + strlen (TP_ACCOUNT_OBJECT_PATH_BASE); - DEBUG ("Trying to migrate password parameter from MC to the " - "keyring ourselves for account %s", account_id); + "keyring ourselves for account %s", + tp_account_get_path_suffix (priv->account)); v = empathy_account_settings_get (self, "password"); |