Fix for XDEBUG mode

git-svn-id: http://yate.null.ro/svn/yate/trunk@619 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2005-12-27 21:54:40 +00:00
parent 7e3d07981c
commit 8974587e22
1 changed files with 1 additions and 1 deletions

View File

@ -495,7 +495,7 @@ bool SIPEngine::checkUser(const String& username, const String& realm, const Str
void SIPEngine::buildAuth(const String& username, const String& realm, const String& passwd,
const String& nonce, const String& method, const String& uri, String& response)
{
XDebug(this,DebugAll,"Building auth: '%s:%s:%s' '%s' '%s:%s'",
XDebug(DebugAll,"SIP Building auth: '%s:%s:%s' '%s' '%s:%s'",
username.c_str(),realm.c_str(),passwd.c_str(),nonce.c_str(),method.c_str(),uri.c_str());
MD5 m1,m2;
m1 << username << ":" << realm << ":" << passwd;