From 78194790b1cb93c8ec79a63f71d609f8ecab2d2f Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Tue, 14 Jun 2011 14:02:56 +0200 Subject: [PATCH] b/f: no quotes in nc for uac auth --- core/plug-in/uac_auth/UACAuth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/plug-in/uac_auth/UACAuth.cpp b/core/plug-in/uac_auth/UACAuth.cpp index bdec29e4..8d37470d 100644 --- a/core/plug-in/uac_auth/UACAuth.cpp +++ b/core/plug-in/uac_auth/UACAuth.cpp @@ -362,7 +362,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";