From: Mark Michelson Date: Thu, 5 Feb 2015 15:50:16 +0000 (+0000) Subject: Add Asterisk 13 revision 431420 that fixes disabling 100rel option on PJSIP endpoints. X-Git-Tag: certified/13.1-cert3-rc1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2125e1b2dea34223f7734a23994e6d6edfa44aa0;p=thirdparty%2Fasterisk.git Add Asterisk 13 revision 431420 that fixes disabling 100rel option on PJSIP endpoints. git-svn-id: https://origsvn.digium.com/svn/asterisk/certified/branches/13.1@431573 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_pjsip/pjsip_configuration.c b/res/res_pjsip/pjsip_configuration.c index 3b58cea49d..10083acc01 100644 --- a/res/res_pjsip/pjsip_configuration.c +++ b/res/res_pjsip/pjsip_configuration.c @@ -144,7 +144,7 @@ static int prack_handler(const struct aco_option *opt, struct ast_variable *var, if (ast_true(var->value)) { endpoint->extensions.flags |= PJSIP_INV_SUPPORT_100REL; } else if (ast_false(var->value)) { - endpoint->extensions.flags &= PJSIP_INV_SUPPORT_100REL; + endpoint->extensions.flags &= ~PJSIP_INV_SUPPORT_100REL; } else if (!strcasecmp(var->value, "required")) { endpoint->extensions.flags |= PJSIP_INV_REQUIRE_100REL; } else {