From 0fc822d8c44be42a62d3c26bbab99d5d0bc88346 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 27 Jan 2014 22:23:47 +0100 Subject: [PATCH] Use correct sender as target for ISUPPORT replies on "VERSION" This fixes commit 2e168c78 ("Return ISUPPORT(005) numerics on 'VERSION'") and make sure, that the 005 numerics are correctly routed back to the sender. --- src/ngircd/irc-info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngircd/irc-info.c b/src/ngircd/irc-info.c index cc19465a..d367647f 100644 --- a/src/ngircd/irc-info.c +++ b/src/ngircd/irc-info.c @@ -1114,7 +1114,7 @@ IRC_VERSION( CLIENT *Client, REQUEST *Req ) #ifndef STRICT_RFC /* send RPL_ISUPPORT(005) numerics */ - if (!IRC_Send_ISUPPORT(Client)) + if (!IRC_Send_ISUPPORT(prefix)) return DISCONNECTED; #endif -- 2.39.2