diff src/protocols/irc/irc.c @ 3599:5125b1adba03

[gaim-migrate @ 3701] This'll let you know who /kicked you. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 06 Oct 2002 17:02:43 +0000
parents 8e4e3eacb45e
children 1066e65b1a18
line wrap: on
line diff
--- a/src/protocols/irc/irc.c	Sun Oct 06 07:56:43 2002 +0000
+++ b/src/protocols/irc/irc.c	Sun Oct 06 17:02:43 2002 +0000
@@ -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];