aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-server-sasl-handler.c
diff options
context:
space:
mode:
Diffstat (limited to 'libempathy/empathy-server-sasl-handler.c')
-rw-r--r--libempathy/empathy-server-sasl-handler.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/libempathy/empathy-server-sasl-handler.c b/libempathy/empathy-server-sasl-handler.c
index 5c78591ed..9f10a7921 100644
--- a/libempathy/empathy-server-sasl-handler.c
+++ b/libempathy/empathy-server-sasl-handler.c
@@ -241,7 +241,8 @@ start_mechanism_with_data_cb (TpChannel *proxy,
void
empathy_server_sasl_handler_provide_password (
EmpathyServerSASLHandler *handler,
- const gchar *password)
+ const gchar *password,
+ gboolean remember)
{
EmpathyServerSASLHandlerPriv *priv;
GArray *array;
@@ -262,6 +263,13 @@ empathy_server_sasl_handler_provide_password (
NULL, NULL, G_OBJECT (handler));
g_array_unref (array);
+
+ DEBUG ("%sremembering the password", remember ? "" : "not ");
+
+ if (remember)
+ {
+ /* TODO */
+ }
}
void