add missing +

pull/691/head
Isaac Connor 2015-02-04 14:22:53 -05:00
parent b22608fb07
commit 65701f0956
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ std::string Authenticator::getAuthHeader(std::string method, std::string uri)
if ( ! fQop.empty() ) {
result += ", qop=" + fQop;
result += ", nc=" + stringtf("%08x",nc);
result += ", cnonce=\"" + fCnonce "\"";
result += ", cnonce=\"" + fCnonce + "\"";
}
result += ", response=\"" + computeDigestResponse(method, uri) + "\"";
result += ", algorithm=\"MD5\"";