diff options
Diffstat (limited to 'daemon/httpauthd.c')
-rw-r--r-- | daemon/httpauthd.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/daemon/httpauthd.c b/daemon/httpauthd.c index b77abcb..44156eb 100644 --- a/daemon/httpauthd.c +++ b/daemon/httpauthd.c @@ -1500,7 +1500,8 @@ static int config_parse(const char* file, ha_buffer_t* buf) if(ha_confbool(name, value, &v) < 0) exit(1); /* Message already printed */ - opts->digest_ignoreuri = v; + ha_messagex(NULL, LOG_WARNING, "DigestIgnoreURI is deprecated, use DigestAllowAnyPath"); + opts->digest_allowany = v; recog = 1; } @@ -1514,13 +1515,13 @@ static int config_parse(const char* file, ha_buffer_t* buf) recog = 1; } - else if(strcmp(name, "digestignoremethod") == 0) + else if(strcmp(name, "digestallowanypath") == 0) { int v; if(ha_confbool(name, value, &v) < 0) exit(1); /* Message already printed */ - opts->digest_ignoremethod = v; + opts->digest_allowany = v; recog = 1; } |