diff options
author | Stef Walter <stef@memberwebs.com> | 2007-05-31 23:29:35 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2007-05-31 23:29:35 +0000 |
commit | 6d7feb248daf16c260007388692d6de48416d9b7 (patch) | |
tree | 7bb76f937b738c78f8c6dabd66e7b721e1b73b3a /daemon/simple.c | |
parent | 82a32ff78428bec9f9a4f69cc21ccf9d197a38ff (diff) |
Support ignoring the HTTP method.
Diffstat (limited to 'daemon/simple.c')
-rw-r--r-- | daemon/simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/simple.c b/daemon/simple.c index 46b1cf1..1c37c23 100644 --- a/daemon/simple.c +++ b/daemon/simple.c @@ -146,7 +146,7 @@ static int validate_digest(ha_request_t* rq, const char* user, digest_context_t* foundgood = 1; /* Try to do the validation */ - ret = digest_complete_check(dg, rq->buf); + ret = digest_complete_check(dg, rq->context, rq->buf); /* If invalid then continue search */ if(ret == HA_FALSE) |