From a4de359df4f19e6c8085d655077421aa57ee258b Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 11 Apr 2012 09:53:35 -0500 Subject: [PATCH] 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 --- src/switch_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");