Mitel interop, thanks mitel for your assistance. (MODSOFIA-15)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14332 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2009-07-23 17:48:36 +00:00
parent 0573d3cf09
commit e2da0849e4
1 changed files with 2 additions and 2 deletions

View File

@ -1905,9 +1905,9 @@ auth_res_t sofia_reg_parse_auth(sofia_profile_t *profile,
}
if (nc && cnonce && qop) {
input2 = switch_mprintf("%q:%q:%q:%q:%q:%q", a1_hash, nonce, nc, cnonce, qop, uridigest);
input2 = switch_mprintf("%s:%s:%s:%s:%s:%s", a1_hash, nonce, nc, cnonce, qop, uridigest);
} else {
input2 = switch_mprintf("%q:%q:%q", a1_hash, nonce, uridigest);
input2 = switch_mprintf("%s:%s:%s", a1_hash, nonce, uridigest);
}
switch_assert(input2);