mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
res_pjsip_caller_id: Copy header name to short header name
When compact_headers was set, we were sending a zero-length header name for PAI and RPID because we always forced the short header name length to 0. We did this because we cloned the header from "From" and wanted to clear "f" from the sname. By cloning however, we bypass pjproject's automatic logic that sets sname to name if there's no compact form of the header, which there isn't for PAI and RPID. So now we force sname to be the same as name right after we set name. res_pjsip_diversion needed the same treatment for the Diversion header. ASTERISK-26241 #close Change-Id: I633ec139630cd83809aae00336cee4a10077e467
This commit is contained in:
@@ -413,7 +413,7 @@ static pjsip_fromto_hdr *create_new_id_hdr(const pj_str_t *hdr_name, pjsip_fromt
|
||||
id_hdr = pjsip_from_hdr_create(tdata->pool);
|
||||
id_hdr->type = PJSIP_H_OTHER;
|
||||
pj_strdup(tdata->pool, &id_hdr->name, hdr_name);
|
||||
id_hdr->sname.slen = 0;
|
||||
id_hdr->sname = id_hdr->name;
|
||||
|
||||
id_name_addr = pjsip_uri_clone(tdata->pool, base->uri);
|
||||
id_uri = pjsip_uri_get_uri(id_name_addr->uri);
|
||||
|
Reference in New Issue
Block a user