diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-06 13:28:37 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-06 13:28:37 +0000 |
commit | 776e65190d271f144b809df267ce0aa5ca3f4367 (patch) | |
tree | 6bd92d7955c0ed42f9b968e135539984df556366 | |
parent | 145c103705a19ca60ae54370085b605fc8a570d6 (diff) |
- m_whois.c:whois_person(): removed /whois notice
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2761 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r-- | modules/m_whois.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/m_whois.c b/modules/m_whois.c index 5e9a080..e4b6eca 100644 --- a/modules/m_whois.c +++ b/modules/m_whois.c @@ -182,18 +182,10 @@ whois_person(struct Client *source_p, struct Client *target_p) source_p->name, target_p->name, target_p->certfp); if (MyConnect(target_p)) - { sendto_one(source_p, form_str(RPL_WHOISIDLE), me.name, source_p->name, target_p->name, idle_time_get(source_p, target_p), target_p->localClient->firsttime); - - if (HasUMode(target_p, UMODE_OPER) && target_p != source_p) - if (HasUMode(target_p, UMODE_SPY)) - sendto_one(target_p, ":%s NOTICE %s :*** Notice -- %s (%s@%s) [%s] is doing " - "a whois on you", me.name, target_p->name, source_p->name, - source_p->username, source_p->host, source_p->servptr->name); - } } /* do_whois() |