]> granicus.if.org Git - apache/commitdiff
Don't let the server start if user has asked for qop=auth-int
authorDaniel Earl Poirier <poirier@apache.org>
Fri, 28 Aug 2009 14:39:34 +0000 (14:39 +0000)
committerDaniel Earl Poirier <poirier@apache.org>
Fri, 28 Aug 2009 14:39:34 +0000 (14:39 +0000)
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

index b3a1251a7ad3153ee8c4a80ba9a5eb3dd9319bbd..df9235b5c4109bd5730e79c2078770de270deca7 100644 (file)
@@ -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);