diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-06-18 11:59:47 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-06-18 11:59:47 +0000 |
commit | bf97b948df51f7388101f5d300eacefb205e23a7 (patch) | |
tree | be047fc7b3d7234d07c2d158943dea641a7e644c /modules | |
parent | 0951045f0e05d4f2185b16be79f8283cfb5cca20 (diff) |
- m_message.c:msg_client(): replaced MyConnect with MyClient test. Otherwise +R/+G opers won't receive
server notices for remote CONNECT and remote KLINE/DLINE/XLINE/RESV attempts.
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3976 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r-- | modules/core/m_message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/m_message.c b/modules/core/m_message.c index 193287c..cb2d29c 100644 --- a/modules/core/m_message.c +++ b/modules/core/m_message.c @@ -369,7 +369,7 @@ static void msg_client(int p_or_n, const char *command, struct Client *source_p, struct Client *target_p, char *text) { - if (MyConnect(source_p)) + if (MyClient(source_p)) { /* * Reset idle time for message only if it's not a notice |