diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | daemon/mysql.c | 4 | ||||
-rw-r--r-- | daemon/pgsql.c | 4 |
4 files changed, 9 insertions, 6 deletions
@@ -1,3 +1,6 @@ +0.9.1 [09-05-2008] + - Fix building pgsql and mysql modules. + 0.9 [22-04-2008] - Allow 128 character long NTLM domains. - Parse passwords from LDAP more circumspectly. diff --git a/configure.in b/configure.in index 3e1547b..93dd8ae 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.9, stef@memberwebs.com) -AM_INIT_AUTOMAKE(httpauth, 0.9) +AC_INIT(httpauth, 0.9.1, stef@memberwebs.com) +AM_INIT_AUTOMAKE(httpauth, 0.9.1) LDFLAGS="$LDFLAGS -L/usr/local/lib" CFLAGS="$CFLAGS -I/usr/local/include -g -O0" diff --git a/daemon/mysql.c b/daemon/mysql.c index 277162c..e926bb2 100644 --- a/daemon/mysql.c +++ b/daemon/mysql.c @@ -515,7 +515,7 @@ static int validate_digest(ha_request_t* rq, const char* user, digest_context_t* ha_messagex(rq, LOG_DEBUG, "testing clear text password for digest auth"); /* Run the actual check */ - ret = digest_complete_check(dg, rq->buf); + ret = digest_complete_check(dg, rq->context, rq->buf); if(ret != HA_FALSE) RETURN(ret); @@ -536,7 +536,7 @@ static int validate_digest(ha_request_t* rq, const char* user, digest_context_t* foundany = 1; /* Run the actual check */ - ret = digest_complete_check(dg, rq->buf); + ret = digest_complete_check(dg, rq->context, rq->buf); if(ret != HA_FALSE) RETURN(ret); diff --git a/daemon/pgsql.c b/daemon/pgsql.c index cdafe99..0306cbf 100644 --- a/daemon/pgsql.c +++ b/daemon/pgsql.c @@ -558,7 +558,7 @@ static int validate_digest(ha_request_t* rq, const char* user, digest_context_t* ha_messagex(rq, LOG_DEBUG, "testing clear text password for digest auth"); /* Run the actual check */ - ret = digest_complete_check(dg, rq->buf); + ret = digest_complete_check(dg, rq->context, rq->buf); if(ret != HA_FALSE) RETURN(ret); @@ -578,7 +578,7 @@ static int validate_digest(ha_request_t* rq, const char* user, digest_context_t* foundany = 1; /* Run the actual check */ - ret = digest_complete_check(dg, rq->buf); + ret = digest_complete_check(dg, rq->context, rq->buf); if(ret != HA_FALSE) RETURN(ret); |