summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2007-06-19 21:00:06 +0000
committerStef Walter <stef@memberwebs.com>2007-06-19 21:00:06 +0000
commitccf2cfde57c93683115e993e64f36916e43df46a (patch)
tree9bd4a06c9fd55f95233574a9589bd183b1c28cf7
parentb86f99a62464dadb9a5ea3bec99f22e8bc3e5d53 (diff)
Fix dumb missing variable
-rw-r--r--ChangeLog1
-rw-r--r--apache1x/mod_httpauth.c1
-rw-r--r--configure.in4
3 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 196ba4e..48a2a9e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
0.8
- Support ignoring of HTTP method in digest. Useful for pass-through
authentication between SOAP services and websites.
+ - Fix problems building apache1x module
0.7 [28-05-2007]
- Use my real name 'Stef Walter'
diff --git a/apache1x/mod_httpauth.c b/apache1x/mod_httpauth.c
index 064b3d1..fffaf9d 100644
--- a/apache1x/mod_httpauth.c
+++ b/apache1x/mod_httpauth.c
@@ -802,6 +802,7 @@ static int httpauth_access(request_rec *r)
{
httpauth_context_t* ctx;
const char *user = r->connection->user;
+ const char* authtype;
int m = r->method_number;
int method_restricted = 0;
register int x;
diff --git a/configure.in b/configure.in
index 1ec8156..96c610b 100644
--- a/configure.in
+++ b/configure.in
@@ -36,8 +36,8 @@ dnl Stef Walter <stef@memberwebs.com>
dnl
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(httpauth, 0.7.90, stef@memberwebs.com)
-AM_INIT_AUTOMAKE(httpauth, 0.7.90)
+AC_INIT(httpauth, 0.7.91, stef@memberwebs.com)
+AM_INIT_AUTOMAKE(httpauth, 0.7.91)
LDFLAGS="$LDFLAGS -L/usr/local/lib"
CFLAGS="$CFLAGS -I/usr/local/include -g -O0"