diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-10-30 21:04:38 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-10-30 21:04:38 +0000 |
commit | 363f35dab5293ee89b870df8effd09249d024576 (patch) | |
tree | 82fa01195c8cfe635bcef3a28f0b51ebfef0d424 /modules/m_oper.c | |
parent | eef62fc56ba6df5690830206d5341cbd5be91612 (diff) |
- Made m_globops() and ms_globops() use sendto_realops_flags()
- Added message-type parameter to sendto_realops_flags() which can be one of
SEND_NOTICE, SEND_GLOBAL, SEND_LOCOPS
- Forward-port -r1617
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1618 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_oper.c')
-rw-r--r-- | modules/m_oper.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/modules/m_oper.c b/modules/m_oper.c index c325755..d58c11b 100644 --- a/modules/m_oper.c +++ b/modules/m_oper.c @@ -51,13 +51,14 @@ failed_oper_notice(struct Client *source_p, const char *name, const char *reason) { if (ConfigFileEntry.failed_oper_notice) - sendto_realops_flags(UMODE_ALL, L_ALL, "Failed OPER attempt as %s " - "by %s (%s@%s) - %s", name, source_p->name, - source_p->username, source_p->host, reason); - - ilog(LOG_TYPE_OPER, "Failed OPER attempt as %s " - "by %s (%s@%s) - %s", name, source_p->name, - source_p->username, source_p->host, reason); + sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, + "Failed OPER attempt as %s by %s (%s@%s) - %s", + name, source_p->name, source_p->username, + source_p->host, reason); + + ilog(LOG_TYPE_OPER, "Failed OPER attempt as %s by %s (%s@%s) - %s", + name, source_p->name, source_p->username, + source_p->host, reason); } /* |