summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-03-31 21:24:33 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-03-31 21:24:33 +0000
commitc72736a6eb41a434680da033653414175fc1ca9a (patch)
treee1358f4a1acf724f45560a2393b9c01afdad21d0
parent6dccb650743fdfa799fc4bc877c7bc9e2692c287 (diff)
Tweak to numeric 378: is connecting from ident@host
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6721 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/cmd_whois.cpp4
1 files changed, 2 insertions, 2 deletions
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())