From: Sean E. <sea...@us...> - 2002-10-06 17:02:46
|
Update of /cvsroot/gaim/gaim/src/protocols/irc In directory usw-pr-cvs1:/tmp/cvs-serv17078/src/protocols/irc Modified Files: irc.c Log Message: This'll let you know who /kicked you. Index: irc.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/irc/irc.c,v retrieving revision 1.89 retrieving revision 1.90 diff -u -d -r1.89 -r1.90 --- irc.c 6 Oct 2002 00:50:19 -0000 1.89 +++ irc.c 6 Oct 2002 17:02:43 -0000 1.90 @@ -1151,8 +1151,8 @@ return FALSE; gc->buddy_chats = g_slist_remove(gc->buddy_chats, c); c->gc = NULL; - g_snprintf(outbuf, sizeof(outbuf), _("You have been kicked from %s:"), - word[3]); + g_snprintf(outbuf, sizeof(outbuf), _("You have been kicked from %s by %s:"), + word[3], nick); do_error_dialog(outbuf, *word_eol[5] == ':' ? word_eol[5] + 1 : word_eol[5], GAIM_INFO); } else { char *reason = *word_eol[5] == ':' ? word_eol[5] + 1 : word_eol[5]; |