comparison src/protocols/oscar/oscar.c @ 10783:48779a02fe99

[gaim-migrate @ 12412] Sean was the only one to notice this?! Someone needs to bake him a brownieieeeeeeee committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 05 Apr 2005 00:20:59 +0000
parents f6d630211935
children 4a2f361f49b9
comparison
equal deleted inserted replaced
10782:93fd90cbf45c 10783:48779a02fe99
3412 if (aim_sn_is_icq(gaim_account_get_username(account)) && aim_sn_is_icq(userinfo->sn)) { 3412 if (aim_sn_is_icq(gaim_account_get_username(account)) && aim_sn_is_icq(userinfo->sn)) {
3413 /* being recevied by ICQ from ICQ - escape HTML so it is displayed as sent */ 3413 /* being recevied by ICQ from ICQ - escape HTML so it is displayed as sent */
3414 gchar *tmp2 = g_markup_escape_text(tmp, -1); 3414 gchar *tmp2 = g_markup_escape_text(tmp, -1);
3415 g_free(tmp); 3415 g_free(tmp);
3416 tmp = tmp2; 3416 tmp = tmp2;
3417 gaim_strreplace(tmp, "\r\n", "<br>"); 3417 tmp2 = gaim_strreplace(tmp, "\r\n", "<br>");
3418 g_free(tmp); 3418 g_free(tmp);
3419 tmp = tmp2; 3419 tmp = tmp2;
3420 } 3420 }
3421 3421
3422 serv_got_im(gc, userinfo->sn, tmp, flags, time(NULL)); 3422 serv_got_im(gc, userinfo->sn, tmp, flags, time(NULL));