# HG changeset patch # User Sean Egan # Date 1046851109 0 # Node ID 877407fc8cc3c1092ada61afd86b7b0b0649d264 # Parent 4938d12f6d48a5a60dd9fe40267c805911dd5d14 [gaim-migrate @ 4962] when the wood nymphs said "hi," this is what they meant. committer: Tailor Script diff -r 4938d12f6d48 -r 877407fc8cc3 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Wed Mar 05 05:10:47 2003 +0000 +++ b/src/protocols/oscar/oscar.c Wed Mar 05 07:58:29 2003 +0000 @@ -3271,11 +3271,11 @@ debug_printf("Disconnected. Code is 0x%04x and msg is %s\n", code, msg); if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) { - if (code == 0x0001) - do_error_dialog(_("Connection Error"), _("You have been disconnected because you have signed on with this screen name at another location."), GAIM_ERROR); - else - do_error_dialog(_("Connection Error"), _("You have been signed off for an unknown reason."), GAIM_ERROR); - signoff(gc); + if (code == 0x0001) { + hide_login_progress(gc, _("You have been disconnected because you have signed on with this screen name at another location.")); + } else { + hide_login_progress(gc, _("You have been signed off for an unknown reason.")); + } } return 1;