From 548c108ecb27f2908d35fb24d77d261e5686d4cd Mon Sep 17 00:00:00 2001 From: codemastr Date: Mon, 24 Dec 2001 18:51:40 +0000 Subject: [PATCH] Fixed a last minute win32 bug --- Changes | 1 + src/s_conf.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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; }