diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2010-12-07 19:11:34 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2010-12-07 19:11:34 +0800 |
commit | eb3f7d2fb30be62b801b6086143fb476b5368b5d (patch) | |
tree | e1416ce7a4ab8ab3a16d43fe01820eb6b13e1544 /libempathy | |
parent | 436815408e8a159a56a4a5ce0ee4aa52b51a8800 (diff) | |
download | gsoc2013-empathy-eb3f7d2fb30be62b801b6086143fb476b5368b5d.tar gsoc2013-empathy-eb3f7d2fb30be62b801b6086143fb476b5368b5d.tar.gz gsoc2013-empathy-eb3f7d2fb30be62b801b6086143fb476b5368b5d.tar.bz2 gsoc2013-empathy-eb3f7d2fb30be62b801b6086143fb476b5368b5d.tar.lz gsoc2013-empathy-eb3f7d2fb30be62b801b6086143fb476b5368b5d.tar.xz gsoc2013-empathy-eb3f7d2fb30be62b801b6086143fb476b5368b5d.tar.zst gsoc2013-empathy-eb3f7d2fb30be62b801b6086143fb476b5368b5d.zip |
server-sasl-handler: shorten very long lines
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-server-sasl-handler.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy/empathy-server-sasl-handler.c b/libempathy/empathy-server-sasl-handler.c index 3e6591624..749311d4b 100644 --- a/libempathy/empathy-server-sasl-handler.c +++ b/libempathy/empathy-server-sasl-handler.c @@ -190,8 +190,8 @@ empathy_server_sasl_handler_constructed (GObject *object) EmpathyServerSASLHandlerPriv *priv = EMPATHY_SERVER_SASL_HANDLER (object)->priv; GError *error = NULL; - tp_cli_channel_interface_sasl_authentication_connect_to_sasl_status_changed (priv->channel, - sasl_status_changed_cb, NULL, NULL, object, &error); + tp_cli_channel_interface_sasl_authentication_connect_to_sasl_status_changed ( + priv->channel, sasl_status_changed_cb, NULL, NULL, object, &error); if (error != NULL) { @@ -403,8 +403,8 @@ empathy_server_sasl_handler_provide_password ( DEBUG ("Calling StartMechanismWithData with our password"); tp_cli_channel_interface_sasl_authentication_call_start_mechanism_with_data ( - priv->channel, -1, "X-TELEPATHY-PASSWORD", array, start_mechanism_with_data_cb, - NULL, NULL, G_OBJECT (handler)); + priv->channel, -1, "X-TELEPATHY-PASSWORD", array, + start_mechanism_with_data_cb, NULL, NULL, G_OBJECT (handler)); g_array_unref (array); |