comparison src/protocols/oscar/oscar.c @ 4830:46fb754a3c10

[gaim-migrate @ 5155] Luke's back, so I have to be verbose :-) The change to list.c fixes a crashe Luke was happening that is really probably my fault, but I don't see how it's even possible, and I think this is the old behavior of find_group_by_buddy or whatever it was. Also a very minor memleak fix for when you sign off an ICQ account after you've requested someone's ICQ info but before you've received it. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 19 Mar 2003 04:59:12 +0000
parents e7e45cee4265
children edfe778868e2
comparison
equal deleted inserted replaced
4829:e7e45cee4265 4830:46fb754a3c10
2347 2347
2348 buddy = gaim_find_buddy(gc->account, name); 2348 buddy = gaim_find_buddy(gc->account, name);
2349 if (buddy && (gaim_get_buddy_alias_only(buddy))) 2349 if (buddy && (gaim_get_buddy_alias_only(buddy)))
2350 nombre = g_strdup_printf("%s (%s)", name, gaim_get_buddy_alias_only(buddy)); 2350 nombre = g_strdup_printf("%s (%s)", name, gaim_get_buddy_alias_only(buddy));
2351 else 2351 else
2352 nombre = g_strdup(name); 2352 nombre = NULL;
2353 2353
2354 dialog_msg = g_strdup_printf(_("The user %s requires authorization before being added to a buddy list. Do you want to send an authorization request?"), nombre); 2354 dialog_msg = g_strdup_printf(_("The user %s requires authorization before being added to a buddy list. Do you want to send an authorization request?"), (nombre ? nombre : name));
2355 data->gc = gc; 2355 data->gc = gc;
2356 data->name = g_strdup(name); 2356 data->name = g_strdup(name);
2357 data->nick = NULL; 2357 data->nick = NULL;
2358 do_ask_dialog(_("Request Authorization"), dialog_msg, data, _("Request Authorization"), gaim_auth_request_msgprompt, _("Cancel"), gaim_auth_dontrequest, my_protocol->plug ? my_protocol->plug->handle : NULL, FALSE); 2358 do_ask_dialog(_("Request Authorization"), dialog_msg, data, _("Request Authorization"), gaim_auth_request_msgprompt, _("Cancel"), gaim_auth_dontrequest, my_protocol->plug ? my_protocol->plug->handle : NULL, FALSE);
2359 2359