From: Joe Orton Date: Wed, 20 May 2026 12:58:03 +0000 (+0000) Subject: * modules/aaa/mod_auth_digest.c: Remove undocumented and unimplemented X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=29b83f42e6410b4c14f0723c0b5c1b3ec6ea9448;p=thirdparty%2Fapache%2Fhttpd.git * modules/aaa/mod_auth_digest.c: Remove undocumented and unimplemented AuthDigestNonceFormat directive. PR: 70056 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1934434 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index fb4d26306b..2edbc4d360 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -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,