summaryrefslogtreecommitdiff
path: root/daemon/pgsql.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/pgsql.c')
-rw-r--r--daemon/pgsql.c4
1 files changed, 2 insertions, 2 deletions
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);