Changeset 1225 for pjproject/branches/symbian/pjsip/src/pjsip/sip_uri.c
- Timestamp:
- Apr 29, 2007 1:55:56 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/symbian/pjsip/src/pjsip/sip_uri.c
r789 r1225 111 111 if (p->value.slen) { 112 112 *buf++ = '='; 113 copy_advance_escape(buf, p->value, (*pvalue_spec)); 113 if (*p->value.ptr == '"') 114 copy_advance(buf, p->value); 115 else 116 copy_advance_escape(buf, p->value, (*pvalue_spec)); 114 117 } 115 118 p = p->next;
Note: See TracChangeset
for help on using the changeset viewer.