From e2da0849e45881a3e6f2390484869038b4a296f1 Mon Sep 17 00:00:00 2001 From: Brian West Date: Thu, 23 Jul 2009 17:48:36 +0000 Subject: [PATCH] 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 --- src/mod/endpoints/mod_sofia/sofia_reg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/endpoints/mod_sofia/sofia_reg.c b/src/mod/endpoints/mod_sofia/sofia_reg.c index ae50493fc8..f0473ac304 100644 --- a/src/mod/endpoints/mod_sofia/sofia_reg.c +++ b/src/mod/endpoints/mod_sofia/sofia_reg.c @@ -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);