# HG changeset patch # User Paul Aurich # Date 1245896620 0 # Node ID 48df71b5cfd18b08c9206460b58c2019c110ed35 # Parent bd47fd3f3b6b482d5af677ee265b96b3229b8744 Update the Pager server at login to the new default if "" or old default. diff -r bd47fd3f3b6b -r 48df71b5cfd1 libpurple/protocols/yahoo/yahoo.c --- a/libpurple/protocols/yahoo/yahoo.c Wed Jun 24 18:42:47 2009 +0000 +++ b/libpurple/protocols/yahoo/yahoo.c Thu Jun 25 02:23:40 2009 +0000 @@ -3346,7 +3346,8 @@ server = purple_account_get_string(account, "server", YAHOO_PAGER_HOST); - if (strcmp(server, "scs.yahoo.com") == 0) + if (*server == '\0' || g_str_equal(server, "scs.yahoo.com") || + g_str_equal(server, "scs.msg.yahoo.com")) purple_account_set_string(account, "server", YAHOO_PAGER_HOST); }