diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:45:43 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:45:43 +0000 |
commit | 55bf54a30532cfeff5bb813617d013761212a64b (patch) | |
tree | 42c7d74a507e4ada55fb16c44805fec3a3ba7dfb /src/protocol/bahamut.c | |
parent | 809ed7c2c04f2c004be3f8f7d29ff3b4f0e3e0f7 (diff) |
Various conversions to use new protocol.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1307 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r-- | src/protocol/bahamut.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index e867af711..86b3115de 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -663,7 +663,7 @@ void moduleAddIRCDMsgs(void) { /* *INDENT-ON* */ /* SQLINE */ -void BahamutIRCdProto::cmd_sqline(const char *mask, const char *reason) +void BahamutIRCdProto::SendSQLine(const char *mask, const char *reason) { if (!mask || !reason) return; send_cmd(NULL, "SQLINE %s :%s", mask, reason); @@ -990,7 +990,7 @@ void BahamutIRCdProto::SendClientIntroduction(const char *nick, const char *user { EnforceQlinedNick(nick, s_BotServ); send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, static_cast<long>(time(NULL)), modes, user, host, ServerName, real); - cmd_sqline(nick, "Reserved for services"); + SendSQLine(nick, "Reserved for services"); } void BahamutIRCdProto::SendGuestNick(const char *nick, const char *user, const char *host, const char *real, const char *modes) |