Module: sems
Branch: master
Commit: f1f71a5860fe944cb02b5ea2256e0cfc9bfced05
URL:    
http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=f1f71a5860fe944cb02b5ea2256e0cfc9bfced05

Author: Stefan Sayer <[email protected]>
Committer: Stefan Sayer <[email protected]>
Date:   Tue Jun 14 13:34:02 2011 +0200

b/f: fix auth qop header quotes (qop="auth" -> qop=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 ae30e8b..44de2e6 100644
--- a/core/plug-in/uac_auth/UACAuth.cpp
+++ b/core/plug-in/uac_auth/UACAuth.cpp
@@ -361,7 +361,7 @@ bool UACAuth::do_auth(const unsigned int code, const 
string& auth_hdr,
     result += "opaque=\"" + challenge.opaque + "\", ";
   
   if (!qop_value.empty())
-    result += "qop=\"" + qop_value + "\", "
+    result += "qop=" + qop_value + ", "
       "cnonce=\"" + cnonce + "\", "
       "nc=\"" + int2hex(nonce_count,true) + "\", ";
 

_______________________________________________
Semsdev mailing list
[email protected]
http://lists.iptel.org/mailman/listinfo/semsdev

Reply via email to