https://issues.apache.org/bugzilla/show_bug.cgi?id=55284
--- Comment #8 from Graham Leggett <[email protected]> --- Can you try this patch and verify whether it works? Index: modules/aaa/mod_auth_digest.c =================================================================== --- modules/aaa/mod_auth_digest.c (revision 1506737) +++ modules/aaa/mod_auth_digest.c (working copy) @@ -1691,7 +1691,15 @@ return HTTP_UNAUTHORIZED; } - if (strcmp(resp->realm, conf->realm)) { + if (!conf->realm) { + ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02486) + "realm mismatch - got `%s' but no realm specified", + resp->realm); + note_digest_auth_failure(r, conf, resp, 0); + return HTTP_UNAUTHORIZED; + } + + if (!resp->realm || strcmp(resp->realm, conf->realm)) { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01788) "realm mismatch - got `%s' but expected `%s'", resp->realm, conf->realm); -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
