From: Ryan Bloom Date: Sat, 14 Apr 2001 23:00:28 +0000 (+0000) Subject: We don't really treat this field as a const, and currently we are getting X-Git-Tag: 2.0.17~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d7ba74961270d09b76f320ed1929fddf3a99de32;p=apache 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 --- 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;