From: Rob F. <rob...@us...> - 2001-11-01 06:42:54
|
Update of /cvsroot/gaim/gaim/src/protocols/irc In directory usw-pr-cvs1:/tmp/cvs-serv24625 Modified Files: irc.c Log Message: I missed this one... Index: irc.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/irc/irc.c,v retrieving revision 1.49 retrieving revision 1.50 diff -u -d -r1.49 -r1.50 --- irc.c 2001/11/01 06:39:59 1.49 +++ irc.c 2001/11/01 06:42:51 1.50 @@ -614,8 +614,12 @@ break; case 301: if (id->in_whois) { - id->whois_str = g_string_append(id->whois_str, "<BR><BR>"); - id->whois_str = g_string_append(id->whois_str, word_eol[4]); + id->whois_str = g_string_append(id->whois_str, "<BR><b>Away: </b>"); + + if (word_eol[5][0] == ':') + id->whois_str = g_string_append(id->whois_str, word_eol[5]+1); + else + id->whois_str = g_string_append(id->whois_str, word_eol[5]); } else irc_got_im(gc, word[4], word_eol[5], IM_FLAG_AWAY, time(NULL)); break; |