Merge "res_pjsip: Prevent "user=phone" being added multiple times to header"

This commit is contained in:
Jenkins2 2017-10-12 07:03:59 -05:00 committed by Gerrit Code Review
commit 292cda4ee7

View file

@ -3095,6 +3095,11 @@ void ast_sip_add_usereqphone(const struct ast_sip_endpoint *endpoint, pj_pool_t
return;
}
if (pjsip_param_find(&sip_uri->other_param, &STR_USER)) {
/* Don't add it if it's already there */
return;
}
param = PJ_POOL_ALLOC_T(pool, pjsip_param);
param->name = STR_USER;
param->value = STR_PHONE;