From f3b90258f07594d42b89663fba97721004853aee Mon Sep 17 00:00:00 2001 From: Daniel Earl Poirier Date: Fri, 28 Aug 2009 14:39:34 +0000 Subject: [PATCH] Don't let the server start if user has asked for qop=auth-int with mod_auth_digest. The server can't provide it because it's not implemented yet. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@808901 13f79535-47bb-0310-9956-ffa450edef68 --- modules/aaa/mod_auth_digest.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index b3a1251a7a..df9235b5c4 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -548,9 +548,7 @@ static const char *set_qop(cmd_parms *cmd, void *config, const char *op) } if (!strcasecmp(op, "auth-int")) { - ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server, - "Digest: WARNING: qop `auth-int' currently only works " - "correctly for responses with no entity"); + return "AuthDigestQop auth-int is not implemented"; } else if (strcasecmp(op, "auth")) { return apr_pstrcat(cmd->pool, "Unrecognized qop: ", op, NULL); -- 2.40.0