Use proper case for checking if digest authentication is used.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@405131 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson
2014-01-08 16:48:12 +00:00
parent 678bebb459
commit aa3835f397

View File

@@ -150,7 +150,7 @@ void ast_sip_report_auth_failed_challenge_response(struct ast_sip_endpoint *endp
.expected_response = "", .expected_response = "",
}; };
if (auth && !pj_strcmp2(&auth->scheme, "digest")) { if (auth && !pj_strcmp2(&auth->scheme, "Digest")) {
ast_copy_pj_str(nonce, &auth->credential.digest.nonce, sizeof(nonce)); ast_copy_pj_str(nonce, &auth->credential.digest.nonce, sizeof(nonce));
ast_copy_pj_str(response, &auth->credential.digest.response, sizeof(response)); ast_copy_pj_str(response, &auth->credential.digest.response, sizeof(response));
} }