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

BUILD : 1.7.6 (513) BUGS : NOTES : Added warnings for NULL-args with sstrdup, and NULL modname with module*Data functions. Fixed Catserv to use moduleAddCommand instead of addCommand.

git-svn-id: svn://svn.anope.org/anope/trunk@513 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@367 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-12-30 15:00:22 +00:00
parent 2be6713785
commit ae0f3c487d
7 changed files with 44 additions and 8 deletions
+2 -2
View File
@@ -95,9 +95,9 @@ void addMessageList(void)
{
Command *c;
c = createCommand("meow", do_meow, NULL, -1, -1, -1, -1, -1);
addCommand(Catserv_cmdTable, c, MOD_UNIQUE);
moduleAddCommand(Catserv_cmdTable, c, MOD_UNIQUE);
c = createCommand("purr", do_purr, NULL, -1, -1, -1, -1, -1);
addCommand(Catserv_cmdTable, c, MOD_UNIQUE);
moduleAddCommand(Catserv_cmdTable, c, MOD_UNIQUE);
}
/*****************************************************************************/