Module: sems Branch: master Commit: f3659c6f222d0855d8bc92dcfc2cba40771221bb URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=f3659c6f222d0855d8bc92dcfc2cba40771221bb
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Tue Jun 14 14:02:56 2011 +0200 b/f: no quotes in nc for uac auth --- core/plug-in/uac_auth/UACAuth.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/core/plug-in/uac_auth/UACAuth.cpp b/core/plug-in/uac_auth/UACAuth.cpp index 44de2e6..aafdf2c 100644 --- a/core/plug-in/uac_auth/UACAuth.cpp +++ b/core/plug-in/uac_auth/UACAuth.cpp @@ -363,7 +363,7 @@ bool UACAuth::do_auth(const unsigned int code, const string& auth_hdr, if (!qop_value.empty()) result += "qop=" + qop_value + ", " "cnonce=\"" + cnonce + "\", " - "nc=\"" + int2hex(nonce_count,true) + "\", "; + "nc=" + int2hex(nonce_count,true) + ", "; result += "response=\"" + string((char*)response) + "\", algorithm=MD5\n"; _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
