mcabber/mcabber/xmpp.c
changeset 1717 c12455fec611
parent 1716 d30fb41725fe
child 1720 98d99485d276
--- a/mcabber/mcabber/xmpp.c	Wed Feb 17 19:07:50 2010 +0100
+++ b/mcabber/mcabber/xmpp.c	Wed Feb 17 19:08:55 2010 +0100
@@ -893,7 +893,7 @@
 
     if (!lm_connection_authenticate(lconnection, username, password, resource,
                                     connection_auth_cb, NULL, FALSE, &error)) {
-      scr_LogPrint(LPRINT_LOGNORM, "Failed to authenticate: %s\n",
+      scr_LogPrint(LPRINT_LOGNORM, "Failed to authenticate: %s",
                    error->message);
       g_error_free (error);
       _try_to_reconnect();
@@ -1786,7 +1786,7 @@
   if (!lm_connection_open(lconnection, connection_open_cb,
                           NULL, FALSE, &error)) {
     _try_to_reconnect();
-    scr_LogPrint(LPRINT_LOGNORM, "Failed to open: %s\n", error->message);
+    scr_LogPrint(LPRINT_LOGNORM, "Failed to open: %s", error->message);
     g_error_free (error);
   }
 }