diff options
author | Adam <Adam@anope.org> | 2011-09-03 01:10:12 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-09-10 02:06:29 -0400 |
commit | 1478b5bbd7ecc99c3ceefc0396845ebb0608d331 (patch) | |
tree | 24783150322c7774643e22f4b3074764dab0736e /src/protocol.cpp | |
parent | 19e0b87aa1f41c3aabf6afc87ecdc8517dd47af0 (diff) |
Added chanserv/log
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r-- | src/protocol.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp index 7e9fca07a..9ca6c1500 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -119,16 +119,6 @@ void IRCDProto::SendKick(const BotInfo *bi, const Channel *chan, const User *use SendKickInternal(bi, chan, user, buf); } -void IRCDProto::SendNoticeChanops(const BotInfo *bi, const Channel *dest, const char *fmt, ...) -{ - va_list args; - char buf[BUFSIZE] = ""; - va_start(args, fmt); - vsnprintf(buf, BUFSIZE - 1, fmt, args); - va_end(args); - SendNoticeChanopsInternal(bi, dest, buf); -} - void IRCDProto::SendMessage(const BotInfo *bi, const Anope::string &dest, const char *fmt, ...) { va_list args; |