aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-auth-factory.c
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2011-01-28 21:52:26 +0800
committerJonny Lamb <jonnylamb@gnome.org>2011-01-28 21:52:26 +0800
commita8e29279f323a5a1f4fc66a450a633b3415bea4d (patch)
treeb54612258a7bccfdc836bad2767b553994cd24d2 /libempathy/empathy-auth-factory.c
parentfe7c6ed34c96c0b57b0294ccebdab20dd0b702ba (diff)
downloadgsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.gz
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.bz2
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.lz
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.xz
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.zst
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.zip
keyring: rename current functions to be more specifically about account passwords
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy/empathy-auth-factory.c')
-rw-r--r--libempathy/empathy-auth-factory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-auth-factory.c b/libempathy/empathy-auth-factory.c
index 443962a7c..8cbb90a14 100644
--- a/libempathy/empathy-auth-factory.c
+++ b/libempathy/empathy-auth-factory.c
@@ -345,7 +345,7 @@ get_password_cb (GObject *source,
{
ObserveChannelsData *data = user_data;
- if (empathy_keyring_get_password_finish (TP_ACCOUNT (source), result, NULL) == NULL)
+ if (empathy_keyring_get_account_password_finish (TP_ACCOUNT (source), result, NULL) == NULL)
{
/* We don't actually mind if this fails, just let the approver
* go ahead and take the channel. */
@@ -404,7 +404,7 @@ observe_channels (TpBaseClient *client,
data->account = g_object_ref (account);
data->channel = g_object_ref (channel);
- empathy_keyring_get_password_async (account, get_password_cb, data);
+ empathy_keyring_get_account_password_async (account, get_password_cb, data);
tp_observe_channels_context_delay (context);
}