comparison src/protocols/irc/irc.c @ 2791:8f6365332a05

[gaim-migrate @ 2804] i hate this shit. i should just stop hacking gaim. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 26 Nov 2001 20:39:54 +0000
parents 428bd24c18c6
children 04f97d65bdc1
comparison
equal deleted inserted replaced
2790:0148422dff4d 2791:8f6365332a05
637 handle_whois(gc, word, word_eol, n); 637 handle_whois(gc, word, word_eol, n);
638 break; 638 break;
639 case 318: 639 case 318:
640 if (id->in_whois && id->whois_str) { 640 if (id->in_whois && id->whois_str) {
641 GString *str = decode_html(id->whois_str->str); 641 GString *str = decode_html(id->whois_str->str);
642 g_show_info_text(gc, NULL, FALSE, str->str, NULL); 642 g_show_info_text(gc, NULL, 2, str->str, NULL);
643 g_string_free(str, TRUE); 643 g_string_free(str, TRUE);
644 g_string_free(id->whois_str, TRUE); 644 g_string_free(id->whois_str, TRUE);
645 id->whois_str = NULL; 645 id->whois_str = NULL;
646 id->in_whois = FALSE; 646 id->in_whois = FALSE;
647 } 647 }