diff --git a/src/ngircd/irc-info.c b/src/ngircd/irc-info.c index 57d6e1a2..d9eae14d 100644 --- a/src/ngircd/irc-info.c +++ b/src/ngircd/irc-info.c @@ -950,7 +950,7 @@ IRC_WHO_Mask(CLIENT *Client, char *Mask, bool OnlyOps) if (Mask) { /* Match pattern against user host/server/name/nick */ client_match = MatchCaseInsensitive(Mask, - Client_Hostname(c)); + Client_HostnameDisplayed(c)); if (!client_match) client_match = MatchCaseInsensitive(Mask, Client_ID(Client_Introducer(c)));