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/ratbox.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/ratbox.c')
-rw-r--r-- | src/protocol/ratbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c index 717c71f92..8145d26c8 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -965,7 +965,7 @@ void RatboxProto::SendBotOp(const char *nick, const char *chan) } /* QUIT */ -void RatboxProto::SendQuit(const char *source, const char *buf) +void RatboxProto::SendQuitInternal(const char *source, const char *buf) { Uid *ud = find_uid(source); if (buf) send_cmd(UseTS6 ? (ud ? ud->uid : source) : source, "QUIT :%s", buf); |