Changeset 4208 for pjproject/trunk/pjsip/src/pjsip-ua/sip_100rel.c
- Timestamp:
- Jul 18, 2012 7:52:33 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip-ua/sip_100rel.c
r3841 r4208 274 274 uac_state = dd->uac_state_list; 275 275 while (uac_state) { 276 if (pj_str cmp(&uac_state->tag, to_tag)==0)276 if (pj_stricmp(&uac_state->tag, to_tag)==0) 277 277 break; 278 278 uac_state = uac_state->next; … … 321 321 * update the req URI (https://trac.pjsip.org/repos/ticket/1364) 322 322 */ 323 if (pj_str cmp(&uac_state->tag, &dd->inv->dlg->remote.info->tag)) {323 if (pj_stricmp(&uac_state->tag, &dd->inv->dlg->remote.info->tag)) { 324 324 const pjsip_contact_hdr *mhdr; 325 325
Note: See TracChangeset
for help on using the changeset viewer.