From: Anthony Minessale Date: Tue, 6 May 2014 19:05:55 +0000 (+0500) Subject: FS-6506 --resolve Technically when you are not using groups you do not add a tag inside you just put several tags in This patch will consume an extraneous tag and move on making it work either way. --- diff --git a/src/switch_core.c b/src/switch_core.c index 737cdfab1b..dc586075d3 100644 --- a/src/switch_core.c +++ b/src/switch_core.c @@ -1344,6 +1344,10 @@ SWITCH_DECLARE(void) switch_load_network_lists(switch_bool_t reload) switch_event_destroy(&my_params); + if ((ut = switch_xml_child(x_domain, "users"))) { + x_domain = ut; + } + for (ut = switch_xml_child(x_domain, "user"); ut; ut = ut->next) { const char *user_cidr = switch_xml_attr(ut, "cidr"); const char *id = switch_xml_attr(ut, "id");