1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 21:23:13 +02:00

Replaced anope_cmd_message() with direct call to SendMessage() in IRCDProto class.

Also added SendMessageInternal() function to IRCDProto class, now SendMessage() is a stub to handle varargs.


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1333 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Naram Qashat cyberbotx@cyberbotx.com
2008-10-02 18:50:20 +00:00
parent c48429eb75
commit a22c4bf1da
3 changed files with 18 additions and 7 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ int m_privmsg(const char *source, const char *receiver, const char *msg)
if (!u) {
alog("%s: user record for %s not found", msg, source);
anope_cmd_message(receiver, source,
ircdproto->SendMessage(receiver, source,
getstring(NULL, USER_RECORD_NOT_FOUND));
return MOD_CONT;
}