Changeset 583 for pjproject/trunk/pjsip/src/pjsip/sip_msg.c
- Timestamp:
- Jul 3, 2006 10:08:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_msg.c
r582 r583 197 197 int i; 198 198 for (i=0; i<PJ_ARRAY_SIZE(method_names); ++i) { 199 if (pj_stricmp(str, method_names[i])==0) { 199 if (pj_memcmp(str->ptr, method_names[i]->ptr, str->slen)==0 || 200 pj_stricmp(str, method_names[i])==0) 201 { 200 202 m->id = (pjsip_method_e)i; 201 203 m->name = *method_names[i];
Note: See TracChangeset
for help on using the changeset viewer.