diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-09 15:26:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-10 22:44:01 +0300 |
commit | cfd535c7f5b442ae3d96a192a2dbe8650cae99af (patch) | |
tree | 158feeb6ecbfcffdc766ec8ac1b2917383c744d3 /src/map/log.c | |
parent | 3742a813233edca6a59cc027209b8cd6bfd6b70b (diff) | |
download | hercules-cfd535c7f5b442ae3d96a192a2dbe8650cae99af.tar.gz hercules-cfd535c7f5b442ae3d96a192a2dbe8650cae99af.tar.bz2 hercules-cfd535c7f5b442ae3d96a192a2dbe8650cae99af.tar.xz hercules-cfd535c7f5b442ae3d96a192a2dbe8650cae99af.zip |
Fix interfaces methods usage.
In some places was used direct methods.
Diffstat (limited to 'src/map/log.c')
-rw-r--r-- | src/map/log.c | 2 |
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); } |