diff options
author | shennetsind <ind@henn.et> | 2013-05-16 16:51:34 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-05-16 16:51:34 -0300 |
commit | 7f7ec56cb5832b6c6899b9d7c9a43c16f3aea0d5 (patch) | |
tree | f30a857390bad7d49031732e1081879d8849116d /src/common | |
parent | 5b6579a21bf8f957d568e5ceb470ced2b0536e0e (diff) | |
download | hercules-7f7ec56cb5832b6c6899b9d7c9a43c16f3aea0d5.tar.gz hercules-7f7ec56cb5832b6c6899b9d7c9a43c16f3aea0d5.tar.bz2 hercules-7f7ec56cb5832b6c6899b9d7c9a43c16f3aea0d5.tar.xz hercules-7f7ec56cb5832b6c6899b9d7c9a43c16f3aea0d5.zip |
Fixed Bug #7248
http://hercules.ws/board/tracker/issue-7248-after-compiling-patches-from-1505-mapserver-crashed/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/core.c b/src/common/core.c index 8ed0b5801..984815bc2 100644 --- a/src/common/core.c +++ b/src/common/core.c @@ -5,6 +5,7 @@ #include "../common/mmo.h" #include "../common/showmsg.h" #include "../common/malloc.h" +#include "../common/strlib.h" #include "core.h" #include "../common/console.h" @@ -16,7 +17,6 @@ #include "../common/mempool.h" #include "../common/sql.h" #include "../config/core.h" - #include "../common/strlib.h" #include "../common/HPM.h" #endif @@ -283,8 +283,8 @@ void core_defaults(void) { hpm_defaults(); #endif console_defaults(); -#ifndef MINICORE strlib_defaults(); +#ifndef MINICORE sql_defaults(); timer_defaults(); #endif |