Changeset 1234
- Timestamp:
- Apr 30, 2007 11:37:53 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/symbian/pjsip/src/pjsip/sip_auth_client.c
r789 r1234 229 229 cred->qop = pjsip_AUTH_STR; 230 230 cred->nc.ptr = (char*)pj_pool_alloc(pool, 16); 231 pj_ansi_snprintf(cred->nc.ptr, 16, "%06u", nc); 231 cred->nc.slen = pj_ansi_snprintf(cred->nc.ptr, 16, "%06u", nc); 232 pj_assert(cred->nc.slen == 6); 232 233 233 234 if (cnonce && cnonce->slen) {
Note: See TracChangeset
for help on using the changeset viewer.