1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 06:03:12 +02:00

Fixed a typo

This commit is contained in:
codemastr
2002-12-08 18:44:30 +00:00
parent 5f9285e139
commit 2783e635b6
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -1714,3 +1714,4 @@ seen. gmtime warning still there
- Documentation updates
- Added back the commands check that didn't get added in conf3 (lamers
beware)
- Fixed a typo in the module system
+2 -2
View File
@@ -200,7 +200,7 @@ char *Module_Create(char *path_)
modinfo.module_load = 0;
modinfo.handle = mod;
if ((ret = (*Mod_Test)(&modinfo)) < MOD_SUCCESS) {
ircsprintf(errorbuf, "Mod_Init returned %i",
ircsprintf(errorbuf, "Mod_Test returned %i",
ret);
/* We EXPECT the module to have cleaned up it's mess */
Module_free(mod);
@@ -210,7 +210,7 @@ char *Module_Create(char *path_)
else {
if ((ret = (*Mod_Test)(0)) < MOD_SUCCESS)
{
ircsprintf(errorbuf, "Mod_Init returned %i",
ircsprintf(errorbuf, "Mod_Test returned %i",
ret);
/* We EXPECT the module to have cleaned up it's mess */
Module_free(mod);