From: Anthony Minessale Date: Wed, 11 Apr 2012 14:53:35 +0000 (-0500) Subject: FS-4077 --resolve this is unrelated, we had to move the network list loader before... X-Git-Tag: v1.2-rc1~17^2~246 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4de359df4f19e6c8085d655077421aa57ee258b;p=thirdparty%2Ffreeswitch.git FS-4077 --resolve this is unrelated, we had to move the network list loader before the modules load because some people using static configs would have mod_sofia load before the acl were in place and it would prevent mod_sofia from doing proper nat detection. This commit should fix it by loading acl both before and after module load --- diff --git a/src/switch_core.c b/src/switch_core.c index 4eeb02e447..61a0a8e6e1 100644 --- a/src/switch_core.c +++ b/src/switch_core.c @@ -1885,7 +1885,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_init_and_modload(switch_core_flag_t return SWITCH_STATUS_GENERR; } - + switch_load_network_lists(SWITCH_FALSE); switch_load_core_config("post_load_switch.conf");