# HG changeset patch # User Christian Hammond # Date 1052296967 0 # Node ID 9737d5ce9dcd4461be5b63d7924dbd4106a50cec # Parent 141404465d38cd54c697b8c7e1d443dd46bc0075 [gaim-migrate @ 5699] The progress bar on connect no longer jumps back, and it now displays "Retrieving buddy list," as requested by somebody (I forgot the name!) This looks a little nicer. committer: Tailor Script diff -r 141404465d38 -r 9737d5ce9dcd src/protocols/msn/notification.c --- a/src/protocols/msn/notification.c Wed May 07 04:36:32 2003 +0000 +++ b/src/protocols/msn/notification.c Wed May 07 08:42:47 2003 +0000 @@ -181,7 +181,7 @@ return FALSE; } - set_login_progress(gc, 3, _("Requesting to send password")); + set_login_progress(gc, 4, _("Requesting to send password")); return TRUE; } @@ -190,7 +190,8 @@ __usr_cmd(MsnServConn *servconn, const char *command, const char **params, size_t param_count) { - struct gaim_connection *gc = servconn->session->account->gc; + MsnSession *session = servconn->session; + struct gaim_connection *gc = session->account->gc; char outparams[MSN_BUF_LEN]; /* We're either getting the challenge or the OK. Let's find out. */ @@ -203,6 +204,8 @@ return FALSE; } + + set_login_progress(session->account->gc, 4, _("Retrieving buddy list")); } else { /* Challenge */ @@ -1068,7 +1071,7 @@ return FALSE; } - set_login_progress(session->account->gc, 2, _("Syncing with server")); + set_login_progress(session->account->gc, 4, _("Syncing with server")); return TRUE; }