Changeset 2205
- Timestamp:
- Aug 12, 2008 10:55:28 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_uri.c
r2193 r2205 602 602 int d; 603 603 604 /* Check that naddr2 is also a name_addr */ 605 if (naddr1->vptr != naddr2->vptr) 606 return -1; 607 604 608 /* I'm not sure whether display name is included in the comparison. */ 605 609 if (pj_strcmp(&naddr1->display, &naddr2->display) != 0) { … … 685 689 { 686 690 PJ_UNUSED_ARG(context); 691 692 /* Check that uri2 is also an other_uri */ 693 if (uri1->vptr != uri2->vptr) 694 return -1; 687 695 688 696 /* Scheme must match. */
Note: See TracChangeset
for help on using the changeset viewer.