comparison src/protocols/msn/servconn.c @ 10225:ecf3ce2e2ab1

[gaim-migrate @ 11357] This is mostly a patch from Felipe Contreras that eliminates MSN switchboard errors and fixes MSN buddy icon syncronization, with some tweaks by me. Thank Felipe if it works, blame me if something broke. I also fixed a couple of text markup escaping things, fixed a glib warning that was bugging me, fix a rare SILC crash, and make gtkstatusselector.c compile (but do nothing) with gtk < 2.4 committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 21 Nov 2004 17:48:09 +0000
parents ab6636c5a136
children a7b2fd5efcf2
comparison
equal deleted inserted replaced
10224:ef7f9e69f03e 10225:ecf3ce2e2ab1
63 { 63 {
64 gaim_connection_error(gc, tmp); 64 gaim_connection_error(gc, tmp);
65 } 65 }
66 else 66 else
67 { 67 {
68 MsnSwitchBoard *swboard;
69 swboard = servconn->data;
70 swboard->error = MSN_SB_ERROR_CONNECTION;
71 /*
68 GaimAccount *account; 72 GaimAccount *account;
69 char *primary; 73 char *primary;
70 74
71 account = gaim_connection_get_account(gc); 75 account = gaim_connection_get_account(gc);
72 primary = g_strdup_printf(_("MSN error for account %s"), 76 primary = g_strdup_printf(_("MSN error for account %s"),
73 gaim_account_get_username(account)); 77 gaim_account_get_username(account));
74 78
75 gaim_notify_error(gc, NULL, primary, tmp); 79 gaim_notify_error(gc, NULL, primary, tmp);
76 80
77 g_free(primary); 81 g_free(primary);
82 */
78 } 83 }
79 84
80 g_free(tmp); 85 g_free(tmp);
81 } 86 }
82 87