im.pidgin.pidgin: 6c4e49ad8170ba8cd03804beff820107a11db58b

nosnilmot at pidgin.im nosnilmot at pidgin.im
Mon Nov 19 08:20:43 EST 2007


-----------------------------------------------------------------
Revision: 6c4e49ad8170ba8cd03804beff820107a11db58b
Ancestor: eaf9c59bfb575035371d0962068db72cea3b2d9f
Author: nosnilmot at pidgin.im
Date: 2007-11-19T13:18:03
Branch: im.pidgin.pidgin

Modified files:
        libpurple/protocols/msn/nexus.c
        libpurple/protocols/msnp9/nexus.c

ChangeLog: 

Unable to connect is not an authentication failure, even if it happens
during authentication. So now we don't claim it is, and Pidgin will attempt
reconnecting.

-------------- next part --------------
============================================================
--- libpurple/protocols/msn/nexus.c	bfea87f2cf816d470ab7c527b84c352f8812a2ce
+++ libpurple/protocols/msn/nexus.c	2a84e972ed3df60af3b4a0f0106b750c1f1ee56f
@@ -67,7 +67,7 @@ nexus_got_response_cb(MsnSoapMessage *re
 	xmlnode *node;
 
 	if (resp == NULL) {
-		msn_session_set_error(session, MSN_ERROR_AUTH, _("Windows Live ID authentication:Unable to connect"));
+		msn_session_set_error(session, MSN_ERROR_SERVCONN, _("Windows Live ID authentication:Unable to connect"));
 		return;
 	}
 
============================================================
--- libpurple/protocols/msnp9/nexus.c	595146178ae1b75fd0e9b6c25c0d0ec32a9df5be
+++ libpurple/protocols/msnp9/nexus.c	70d0ba8752f9b33cda58265abab0c45ea76519eb
@@ -143,7 +143,7 @@ login_error_cb(PurpleSslConnection *gsc,
 	session = nexus->session;
 	g_return_if_fail(session != NULL);
 
-	msn_session_set_error(session, MSN_ERROR_AUTH, _("Unable to connect"));
+	msn_session_set_error(session, MSN_ERROR_SERVCONN, _("Unable to connect"));
 	/* the above line will result in nexus being destroyed, so we don't want
 	 * to destroy it here, or we'd crash */
 }


More information about the Commits mailing list