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:
@@ -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
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user