diff --git a/Changes b/Changes index 872b333d7..a10b1d323 100644 --- a/Changes +++ b/Changes @@ -1024,3 +1024,4 @@ seen. gmtime warning still there - Changed to beta5 - Fixed some slave work.. return MOD_SUCCESS; in all command modules.. - make install fix +- Fixed a last minute bug in win32 diff --git a/src/s_conf.c b/src/s_conf.c index 5e0ef5e83..36d7bed1a 100644 --- a/src/s_conf.c +++ b/src/s_conf.c @@ -875,7 +875,7 @@ int init_conf2(char *filename) if (!includes) { includes = MyMalloc(sizeof(ConfigItem_include)); includes->file = strdup(filename); - DelListItem(includes, conf_include); + AddListItem(includes, conf_include); } return i; }