summaryrefslogtreecommitdiff
path: root/src/map/log.c
diff options
context:
space:
mode:
authorHaruna <haru@dotalux.com>2014-11-10 21:09:46 +0100
committerHaruna <haru@dotalux.com>2014-11-10 21:09:46 +0100
commit82ca427389450aabec616a55b1a5ed519bd44d8e (patch)
tree6c004ef9edd56f6ac039df26342810ac21de3bdb /src/map/log.c
parentc1e1099c701de325a076172bcadf544e5b3000c9 (diff)
parentcfd535c7f5b442ae3d96a192a2dbe8650cae99af (diff)
downloadhercules-82ca427389450aabec616a55b1a5ed519bd44d8e.tar.gz
hercules-82ca427389450aabec616a55b1a5ed519bd44d8e.tar.bz2
hercules-82ca427389450aabec616a55b1a5ed519bd44d8e.tar.xz
hercules-82ca427389450aabec616a55b1a5ed519bd44d8e.zip
Merge pull request #386 from 4144/fixplugins
Fix interfaces methods usage.
Diffstat (limited to 'src/map/log.c')
-rw-r--r--src/map/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/log.c b/src/map/log.c
index b5179e16b..3efcd09df 100644
--- a/src/map/log.c
+++ b/src/map/log.c
@@ -452,7 +452,7 @@ int log_config_read(const char* cfgName) {
safestrncpy(logs->config.log_chat, w2, sizeof(logs->config.log_chat));
//support the import command, just like any other config
else if( strcmpi(w1,"import") == 0 )
- log_config_read(w2);
+ logs->config_read(w2);
else
ShowWarning("Unknown setting '%s' in file %s\n", w1, cfgName);
}