comparison src/protocols/oscar/oscar.c @ 4651:877407fc8cc3

[gaim-migrate @ 4962] when the wood nymphs said "hi," this is what they meant. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 05 Mar 2003 07:58:29 +0000
parents 4938d12f6d48
children 0f8717733f33
comparison
equal deleted inserted replaced
4650:4938d12f6d48 4651:877407fc8cc3
3269 msg = va_arg(ap, char *); 3269 msg = va_arg(ap, char *);
3270 va_end(ap); 3270 va_end(ap);
3271 3271
3272 debug_printf("Disconnected. Code is 0x%04x and msg is %s\n", code, msg); 3272 debug_printf("Disconnected. Code is 0x%04x and msg is %s\n", code, msg);
3273 if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) { 3273 if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) {
3274 if (code == 0x0001) 3274 if (code == 0x0001) {
3275 do_error_dialog(_("Connection Error"), _("You have been disconnected because you have signed on with this screen name at another location."), GAIM_ERROR); 3275 hide_login_progress(gc, _("You have been disconnected because you have signed on with this screen name at another location."));
3276 else 3276 } else {
3277 do_error_dialog(_("Connection Error"), _("You have been signed off for an unknown reason."), GAIM_ERROR); 3277 hide_login_progress(gc, _("You have been signed off for an unknown reason."));
3278 signoff(gc); 3278 }
3279 } 3279 }
3280 3280
3281 return 1; 3281 return 1;
3282 } 3282 }
3283 3283