diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | apache1x/mod_httpauth.c | 1 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 4 insertions, 2 deletions
@@ -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" |