From 83eb5d0f3e9701f5c8a8d2da6c4b6709f02ed35a Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Sat, 10 May 2008 00:58:23 +0000 Subject: Fix building of mysql and pgsql modules --- daemon/pgsql.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'daemon/pgsql.c') 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); -- cgit v1.2.3