]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[mod_sofia] Remove 'precondition' from 'Supported:' w/ 100rel
authorTroy Denton <trdenton@gmail.com>
Fri, 8 Jan 2021 16:55:59 +0000 (10:55 -0600)
committerGitHub <noreply@github.com>
Fri, 8 Jan 2021 16:55:59 +0000 (19:55 +0300)
src/mod/endpoints/mod_sofia/sofia.c

index ce45548478ac1a1254999fe43180e11150643d9a..1f003c9aa96d8313a72d5b2e3411b437d4726683 100644 (file)
@@ -3165,7 +3165,7 @@ void *SWITCH_THREAD_FUNC sofia_profile_thread_run(switch_thread_t *thread, void
                goto end;
        }
 
-       supported = switch_core_sprintf(profile->pool, "%s%s%spath, replaces", use_100rel ? "precondition, 100rel, " : "", use_timer ? "timer, " : "", use_rfc_5626 ? "outbound, " : "");
+       supported = switch_core_sprintf(profile->pool, "%s%s%spath, replaces", use_100rel ? "100rel, " : "", use_timer ? "timer, " : "", use_rfc_5626 ? "outbound, " : "");
 
        if (sofia_test_pflag(profile, PFLAG_AUTO_NAT) && switch_nat_get_type()) {
                if ( (! sofia_test_pflag(profile, PFLAG_TLS) || ! profile->tls_only) && switch_nat_add_mapping(profile->sip_port, SWITCH_NAT_UDP, NULL, SWITCH_FALSE) == SWITCH_STATUS_SUCCESS) {