]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/aaa/mod_auth_digest.c: Remove undocumented and unimplemented
authorJoe Orton <jorton@apache.org>
Wed, 20 May 2026 12:58:03 +0000 (12:58 +0000)
committerJoe Orton <jorton@apache.org>
Wed, 20 May 2026 12:58:03 +0000 (12:58 +0000)
  AuthDigestNonceFormat directive.

PR: 70056

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1934434 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_auth_digest.c

index fb4d26306be064dc8f33bbfb7300fc83082a4892..2edbc4d3601fec55c67afac395a06ad6963fe9ee 100644 (file)
@@ -595,12 +595,6 @@ static const char *set_nonce_lifetime(cmd_parms *cmd, void *config,
     return NULL;
 }
 
-static const char *set_nonce_format(cmd_parms *cmd, void *config,
-                                    const char *fmt)
-{
-    return "AuthDigestNonceFormat is not implemented";
-}
-
 static const char *set_nc_check(cmd_parms *cmd, void *config, int flag)
 {
 #if !APR_HAS_SHARED_MEMORY
@@ -693,8 +687,6 @@ static const command_rec digest_cmds[] =
      "A list of quality-of-protection options"),
     AP_INIT_TAKE1("AuthDigestNonceLifetime", set_nonce_lifetime, NULL, OR_AUTHCFG,
      "Maximum lifetime of the server nonce (seconds)"),
-    AP_INIT_TAKE1("AuthDigestNonceFormat", set_nonce_format, NULL, OR_AUTHCFG,
-     "The format to use when generating the server nonce"),
     AP_INIT_FLAG("AuthDigestNcCheck", set_nc_check, NULL, OR_AUTHCFG,
      "Whether or not to check the nonce-count sent by the client"),
     AP_INIT_TAKE1("AuthDigestAlgorithm", set_algorithm, NULL, OR_AUTHCFG,