X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_whois.cpp;h=192e2822c1975b80957b4e394a33a87ca07892ab;hb=c72736a6eb41a434680da033653414175fc1ca9a;hp=8c8af78af6aa35a2ab692c7de2d8e4d6487c6fee;hpb=6dccb650743fdfa799fc4bc877c7bc9e2692c287;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_whois.cpp b/src/cmd_whois.cpp index 8c8af78af..192e2822c 100644 --- a/src/cmd_whois.cpp +++ b/src/cmd_whois.cpp @@ -20,13 +20,13 @@ void do_whois(InspIRCd* ServerInstance, userrec* user, userrec* dest,unsigned long signon, unsigned long idle, const char* nick) { - // bug found by phidjit - were able to whois an incomplete connection if it had sent a NICK or USER + /* check if the user is registered first, can't whois unknown connections */ if (dest->registered == REG_ALL) { ServerInstance->SendWhoisLine(user, dest, 311, "%s %s %s %s * :%s",user->nick, dest->nick, dest->ident, dest->dhost, dest->fullname); if ((user == dest) || (*user->oper)) { - ServerInstance->SendWhoisLine(user, dest, 378, "%s %s :is connecting from *@%s %s",user->nick, dest->nick, dest->host, dest->GetIPString()); + ServerInstance->SendWhoisLine(user, dest, 378, "%s %s :is connecting from %s@%s %s", user->nick, dest->nick, dest->ident, dest->host, dest->GetIPString()); } std::string cl = dest->ChannelList(user); if (cl.length())