diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-01 13:27:04 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-01 13:27:04 +0000 |
commit | f5bd3291ed24915d50718473d830b3c363def711 (patch) | |
tree | 902e23f5299685f906192744c923230b85935186 | |
parent | d4690491e1788ae327ec5331532455996ccedfff (diff) |
- Fixed compile warnings due to missing arguments to sendto_realops_flags()
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1624 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r-- | modules/core/m_nick.c | 2 | ||||
-rw-r--r-- | modules/core/m_server.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/m_nick.c b/modules/core/m_nick.c index 36dfcc9..504f517 100644 --- a/modules/core/m_nick.c +++ b/modules/core/m_nick.c @@ -851,7 +851,7 @@ perform_nick_collides(struct Client *source_p, struct Client *client_p, target_p->name, target_p->from->name, client_p->name); else - sendto_realops_flags(UMODE_ALL, L_ALL, + sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, "Nick collision on %s(%s <- %s)(newer killed)", target_p->name, target_p->from->name, client_p->name); diff --git a/modules/core/m_server.c b/modules/core/m_server.c index ed4ca7f..6a2bbf8 100644 --- a/modules/core/m_server.c +++ b/modules/core/m_server.c @@ -85,7 +85,7 @@ mr_server(struct Client *client_p, struct Client *source_p, sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE, "Unauthorized server connection attempt from %s: Bogus server name " "for server %s", get_client_name(client_p, HIDE_IP), name); - sendto_realops_flags(UMODE_ALL, L_OPER, + sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE, "Unauthorized server connection attempt from %s: Bogus server name " "for server %s", get_client_name(client_p, MASK_IP), name); exit_client(client_p, client_p, "Bogus server name"); |