Changeset 696
- Timestamp:
- Sep 9, 2006 4:34:30 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_auth_client.c
r502 r696 229 229 cred->qop = pjsip_AUTH_STR; 230 230 cred->nc.ptr = 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, "%08u", nc); 232 232 233 233 if (cnonce && cnonce->slen) { … … 589 589 const pjsip_method *method; 590 590 pjsip_cached_auth *auth; 591 pj_status_t status;592 591 593 592 PJ_ASSERT_RETURN(sess && tdata, PJ_EINVAL); … … 641 640 const pjsip_cred_info *cred; 642 641 pjsip_authorization_hdr *hauth; 642 pj_status_t status; 643 643 644 644 cred = auth_find_cred(sess, &auth->realm,
Note: See TracChangeset
for help on using the changeset viewer.