diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-10 15:41:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-15 19:26:02 +0300 |
commit | 8c51c16bd34c2dd453bafc588e619d0b64ac0276 (patch) | |
tree | 7912feec3bc93172b3d9aabaaf621d44e9c9cab3 /src/map/map.c | |
parent | 0cf69eb96545b3482baa6c541a3bfdcc66c8b1f7 (diff) | |
download | hercules-8c51c16bd34c2dd453bafc588e619d0b64ac0276.tar.gz hercules-8c51c16bd34c2dd453bafc588e619d0b64ac0276.tar.bz2 hercules-8c51c16bd34c2dd453bafc588e619d0b64ac0276.tar.xz hercules-8c51c16bd34c2dd453bafc588e619d0b64ac0276.zip |
Add support for plugin options in map server config (inter-server.conf).
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/map.c b/src/map/map.c index 5c0f5d65e..9e2727b07 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -3780,6 +3780,8 @@ int inter_config_read(char *cfgName) { /* import */ else if(strcmpi(w1,"import")==0) map->inter_config_read(w2); + else + HPM->parseConf(w1, w2, HPCT_MAP_INTER); } fclose(fp); |