]> granicus.if.org Git - apache/commitdiff
We don't really treat this field as a const, and currently we are getting
authorRyan Bloom <rbb@apache.org>
Sat, 14 Apr 2001 23:00:28 +0000 (23:00 +0000)
committerRyan Bloom <rbb@apache.org>
Sat, 14 Apr 2001 23:00:28 +0000 (23:00 +0000)
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

index b2afb89bb8055fc94d79f3fb46b4068fbc553e47..2b0e2331722abe176b1b14e328e22df8c1676821 100644 (file)
@@ -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;