1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-12-12 18:00:28 +00:00

IRC_USERHOST(): respect hostname cloaking

This commit is contained in:
Alexander Barton 2010-08-17 23:56:36 +02:00
parent a51670005f
commit 6f4a348b75

View File

@ -665,7 +665,7 @@ IRC_USERHOST(CLIENT *Client, REQUEST *Req)
strlcat(rpl, "+", sizeof(rpl));
strlcat(rpl, Client_User(c), sizeof(rpl));
strlcat(rpl, "@", sizeof(rpl));
strlcat(rpl, Client_Hostname(c), sizeof(rpl));
strlcat(rpl, Client_HostnameCloaked(c), sizeof(rpl));
strlcat(rpl, " ", sizeof(rpl));
}
}