Mercurial > pidgin
changeset 29775:869dfdcea8a7
Don't bother updating the login progress if the step didn't change
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Thu, 22 Apr 2010 17:38:56 +0000 |
| parents | 2140074fa387 |
| children | 53dd827e6bb2 |
| files | libpurple/protocols/msn/session.c |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/msn/session.c Thu Apr 22 05:18:52 2010 +0000 +++ b/libpurple/protocols/msn/session.c Thu Apr 22 17:38:56 2010 +0000 @@ -407,7 +407,7 @@ /* 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
