summaryrefslogtreecommitdiffstats
path: root/modules/aaa/mod_auth_digest.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-07-25 02:58:22 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-07-25 02:58:22 +0200
commitfc3580dd3b2452b9b24e2cce002bfe0ec3970e0b (patch)
tree3844e31bd895907ad0831603df8a99d371862a75 /modules/aaa/mod_auth_digest.c
parent Changes to get Win32 compiling again, including substituting (diff)
downloadapache2-fc3580dd3b2452b9b24e2cce002bfe0ec3970e0b.tar.xz
apache2-fc3580dd3b2452b9b24e2cce002bfe0ec3970e0b.zip
Missing apr_strings.h - hope this wasn't destined for some global header.
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85877 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/aaa/mod_auth_digest.c')
-rw-r--r--modules/aaa/mod_auth_digest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c
index 00c7fc14be..2314884208 100644
--- a/modules/aaa/mod_auth_digest.c
+++ b/modules/aaa/mod_auth_digest.c
@@ -114,6 +114,7 @@
#include "apr_time.h"
#include "apr_errno.h"
#include "apr_lock.h"
+#include "apr_strings.h"
#if APR_HAS_SHARED_MEMORY
@@ -498,7 +499,7 @@ static const char *set_group_file(cmd_parms *cmd, void *config,
static const char *set_qop(cmd_parms *cmd, void *config, const char *op)
{
digest_config_rec *conf = (digest_config_rec *) config;
- const char **tmp;
+ char **tmp;
int cnt;
if (!strcasecmp(op, "none")) {