Merge pull request #1480 from dragos-oancea/acl-extend

[core] extend count of acl entries (per SOFIA_MAX_ACL).
This commit is contained in:
Andrey Volk 2021-12-09 17:45:56 +03:00 committed by GitHub
commit 862a19e103
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1405,7 +1405,7 @@ SWITCH_DECLARE(switch_bool_t) switch_check_network_list_ip_port_token(const char
} else if (strchr(list_name, '/')) {
if (strchr(list_name, ',')) {
char *list_name_dup = strdup(list_name);
char *argv[32];
char *argv[100]; /* MAX ACL */
int argc;
switch_assert(list_name_dup);