comparison src/protocols/oscar/oscar.c @ 6113:30d4c432101c

[gaim-migrate @ 6575] Fix a memleak in the status code (a temporary g_hash_table was not getting freed) Make the auto-reconnect plugin fully multi-protocol aware. Previously, if it was waiting to sign on more than one account, and you unload the plugin, it would continue to attempt to sign on all but one of the accounts. Set wants_to_die to TRUE if Buddies->Signoff was chosen. Get rid of some unneeded oscar debugging lines for faceprint :-) Make oscar not attempt to signon again if you were disconnected because you signed on from another location. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 13 Jul 2003 20:36:53 +0000
parents c99959f1bb73
children 11bedb793a44
comparison
equal deleted inserted replaced
6112:a22c151463e1 6113:30d4c432101c
3697 3697
3698 gaim_debug(GAIM_DEBUG_INFO, "oscar", 3698 gaim_debug(GAIM_DEBUG_INFO, "oscar",
3699 "Disconnected. Code is 0x%04x and msg is %s\n", code, msg); 3699 "Disconnected. Code is 0x%04x and msg is %s\n", code, msg);
3700 if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) { 3700 if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) {
3701 if (code == 0x0001) { 3701 if (code == 0x0001) {
3702 gc->wants_to_die = TRUE;
3702 gaim_connection_error(gc, _("You have been disconnected because you have signed on with this screen name at another location.")); 3703 gaim_connection_error(gc, _("You have been disconnected because you have signed on with this screen name at another location."));
3703 } else { 3704 } else {
3704 gaim_connection_error(gc, _("You have been signed off for an unknown reason.")); 3705 gaim_connection_error(gc, _("You have been signed off for an unknown reason."));
3705 } 3706 }
3706 od->killme = TRUE; 3707 od->killme = TRUE;