Fixed Web UI compatibility with Safari

This commit is contained in:
Christophe Dumez 2010-03-16 00:20:32 +00:00
parent 12fff1b966
commit 165b33a94e
4 changed files with 124 additions and 12 deletions

View file

@ -259,7 +259,7 @@ bool HttpServer::isAuthorized(QByteArray auth, QString method) const {
md5_ha.addData(password_ha1+":"+prop_nonce+":"+ha2);
response = md5_ha.result().toHex();
}
qDebug("AUTH: comparing reponses");
qDebug("AUTH: comparing reponses: (%d)", static_cast<int>(prop_response == response));
return prop_response == response;
}