commit 3fd4f320b726e91f674c424e0c5ff5abce2c6f09 from: Alexander Barton date: Tue Aug 17 19:00:47 2010 UTC WHOIS: respect hostname cloaking commit - 6fdd3479f126a866c022c39dcd424d6042de6875 commit + 3fd4f320b726e91f674c424e0c5ff5abce2c6f09 blob - ad585fe236151dc68f013ad22a81896512de767a blob + 74530f7b54a3e90d2e246e1b21f0542341edd08f --- src/ngircd/irc-info.c +++ src/ngircd/irc-info.c @@ -939,8 +939,11 @@ IRC_WHOIS( CLIENT *Client, REQUEST *Req ) if(( Client_NextHop( target ) != Client_ThisServer( )) && ( Client_Type( Client_NextHop( target )) == CLIENT_SERVER )) return IRC_WriteStrClientPrefix( target, from, "WHOIS %s :%s", Req->argv[0], Req->argv[1] ); - /* Nick, user and name */ - if( ! IRC_WriteStrClient( from, RPL_WHOISUSER_MSG, Client_ID( from ), Client_ID( c ), Client_User( c ), Client_Hostname( c ), Client_Info( c ))) return DISCONNECTED; + /* Nick, user, hostname and client info */ + if (!IRC_WriteStrClient(from, RPL_WHOISUSER_MSG, Client_ID(from), + Client_ID(c), Client_User(c), + Client_HostnameCloaked(c), Client_Info(c))) + return DISCONNECTED; /* Server */ if( ! IRC_WriteStrClient( from, RPL_WHOISSERVER_MSG, Client_ID( from ), Client_ID( c ), Client_ID( Client_Introducer( c )), Client_Info( Client_Introducer( c )))) return DISCONNECTED;