Commit 2a01a4fd authored by Ryan Bloom's avatar Ryan Bloom
Browse files

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
parent 4ebfcc3d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;