diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:25:27 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:25:27 +0000 |
commit | 50db0bb6807382c78f67a77670ecccf8038207a6 (patch) | |
tree | cb25b194d8b335919dce7655f2f2f1c2a0e71483 /src/protocol/charybdis.c | |
parent | 877791d8b63ee88f4edf9bcd2261a6bbafcde8af (diff) |
Replaced anope_SendQuit() with direct call to SendQuit() in IRCDProto class.
Added SendQuitInternal() to IRCDProto class, now SendQuit() is a stub to handle varargs.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1341 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/charybdis.c')
-rw-r--r-- | src/protocol/charybdis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/charybdis.c b/src/protocol/charybdis.c index c36e18a25..89b79ee65 100644 --- a/src/protocol/charybdis.c +++ b/src/protocol/charybdis.c @@ -1036,7 +1036,7 @@ void CharybdisProto::SendBotOp(const char *nick, const char *chan) } /* QUIT */ -void CharybdisProto::SendQuit(const char *source, const char *buf) +void CharybdisProto::SendQuitInternal(const char *source, const char *buf) { BotInfo *bi = findbot(source); if (buf) send_cmd(UseTS6 ? (bi ? bi->uid.c_str() : source) : source, "QUIT :%s", buf); |