From 391aa8d1f714d5dc2fc1b47ec466082169ef2177 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sun, 12 Feb 2012 13:51:43 +0100 Subject: [PATCH] Fix forwarding of LIST commands Bug reported by Cahata, thanks! --- src/ngircd/irc-channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngircd/irc-channel.c b/src/ngircd/irc-channel.c index 2d520b31..5ea108ad 100644 --- a/src/ngircd/irc-channel.c +++ b/src/ngircd/irc-channel.c @@ -651,7 +651,7 @@ IRC_LIST( CLIENT *Client, REQUEST *Req ) /* Target is indeed an other server, forward it! */ return IRC_WriteStrClientPrefix(target, from, "LIST %s :%s", - Client_ID(from), + Req->argv[0], Req->argv[1]); } } -- 2.39.2