pidgin: d72abb9b: Don't bother updating the login progress...

markdoliner at pidgin.im markdoliner at pidgin.im
Thu Apr 22 13:40:29 EDT 2010


-----------------------------------------------------------------
Revision: d72abb9b317d376e2c8c8233e9cb65ea808c8ecc
Ancestor: 73717266fa7d3a35ac09e09781fc5b48e2954fab
Author: markdoliner at pidgin.im
Date: 2010-04-22T17:38:56
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/d72abb9b317d376e2c8c8233e9cb65ea808c8ecc

Modified files:
        libpurple/protocols/msn/session.c

ChangeLog: 

Don't bother updating the login progress if the step didn't change

-------------- next part --------------
============================================================
--- libpurple/protocols/msn/session.c	9c45d6773028eb5ac5adb35e17b2ed10dd9f92c6
+++ libpurple/protocols/msn/session.c	a946b69745ff5a673f944fcd070d68fe1e04578f
@@ -407,7 +407,7 @@ msn_session_set_login_step(MsnSession *s
 
 	/* Prevent the connection progress going backwards, eg. if we get
 	 * transferred several times during login */
-	if (session->login_step > step)
+	if (session->login_step >= step)
 		return;
 
 	/* If we're already logged in, we're probably here because of a


More information about the Commits mailing list