From d7ba74961270d09b76f320ed1929fddf3a99de32 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Sat, 14 Apr 2001 23:00:28 +0000 Subject: [PATCH] We don't really treat this field as a const, and currently we are getting warnings because on line 536, we are trying to assign a non-const to a const. This started happening after a fix for Windows. This change should solve the problem on all systems. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88860 13f79535-47bb-0310-9956-ffa450edef68 --- modules/aaa/mod_auth_digest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index b2afb89bb8..2b0e233172 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -161,7 +161,7 @@ typedef struct digest_config_struct { const char *pwfile; const char *grpfile; const char *realm; - const char **qop_list; + char **qop_list; apr_sha1_ctx_t nonce_ctx; apr_time_t nonce_lifetime; const char *nonce_format; -- 2.40.0