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

Make ircd.c compile for real.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1374 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-10-02 23:14:30 +00:00
parent 0d7ccde197
commit bd4b99386b
+2 -1
View File
@@ -108,7 +108,8 @@ void anope_SendCTCP(const char *source, const char *dest, const char *fmt, ...)
vsnprintf(buf, BUFSIZE - 1, fmt, args);
va_end(args);
}
ircdproto->SendCTCP(source, dest, buf);
// XXX: CBX, when you move this to ircdproto, please make it take BotInfo * directly, thx :)
ircdproto->SendCTCP(findbot(source), dest, buf);
}
void anope_SendNumeric(const char *source, int numeric, const char *dest, const char *fmt, ...)