From: Mike Jerris Date: Thu, 27 Jun 2019 19:30:21 +0000 (-0400) Subject: FS-11906: [mod_sofia] fix NDLB-allow-bad-iananame profile param X-Git-Tag: v1.8.7~1^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e129b913d32822e42019588f2bddc9030b8455f;p=thirdparty%2Ffreeswitch.git FS-11906: [mod_sofia] fix NDLB-allow-bad-iananame profile param --- diff --git a/src/mod/endpoints/mod_sofia/sofia.c b/src/mod/endpoints/mod_sofia/sofia.c index d1e32a096f..739a7d7078 100644 --- a/src/mod/endpoints/mod_sofia/sofia.c +++ b/src/mod/endpoints/mod_sofia/sofia.c @@ -5389,9 +5389,9 @@ switch_status_t config_sofia(sofia_config_t reload, char *profile_name) } } else if (!strcasecmp(var, "NDLB-allow-bad-iananame")) { if (switch_true(val)) { - profile->mndlb |= SM_NDLB_ALLOW_BAD_IANANAME; + profile->ndlb |= SM_NDLB_ALLOW_BAD_IANANAME; } else { - profile->mndlb &= ~SM_NDLB_ALLOW_BAD_IANANAME; + profile->ndlb &= ~SM_NDLB_ALLOW_BAD_IANANAME; } } else if (!strcasecmp(var, "NDLB-expires-in-register-response")) { if (switch_true(val)) {