From: Brian Date: Thu, 30 Apr 2015 12:35:23 +0000 (-0500) Subject: FS-7492 fix copy paste typo X-Git-Tag: v1.4.19~6^2~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=518d74a4bc3ac868bdef25028d851391c4d44286;p=thirdparty%2Ffreeswitch.git FS-7492 fix copy paste typo --- diff --git a/src/mod/endpoints/mod_sofia/sofia.c b/src/mod/endpoints/mod_sofia/sofia.c index f8ccbd6f67..78a0b58646 100644 --- a/src/mod/endpoints/mod_sofia/sofia.c +++ b/src/mod/endpoints/mod_sofia/sofia.c @@ -4303,9 +4303,9 @@ switch_status_t config_sofia(sofia_config_t reload, char *profile_name) } } else if (!strcasecmp(var, "tls-always-nat")) { if (switch_true(val)) { - sofia_set_pflag(profile, PFLAG_TCP_ALWAYS_NAT); + sofia_set_pflag(profile, PFLAG_TLS_ALWAYS_NAT); } else { - sofia_clear_pflag(profile, PFLAG_TCP_ALWAYS_NAT); + sofia_clear_pflag(profile, PFLAG_TLS_ALWAYS_NAT); } } else if (!strcasecmp(var, "presence-proto-lookup")) { if (switch_true(val)) {