commit | a8cfa34a9c011cecfaedfaf7d91de3e5f7f004a0 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Jul 09 11:23:31 2008 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Jul 09 11:23:31 2008 +0200 |
tree | 8e0f80a902119863e2e7716bba09ec82e26602da | |
parent | 0c303eec87cc8a5ab4cb7d6aa2dcb2706bf76774 [diff] |
[BUG] use_backend would not correctly consider "unless" A copy-paste typo made use_backend not correctly consider the "unless" case, depending on the previous "block" rule.
diff --git a/src/proto_http.c b/src/proto_http.c index beb14d4..3ee28ab 100644 --- a/src/proto_http.c +++ b/src/proto_http.c
@@ -2004,7 +2004,7 @@ int ret; ret = acl_exec_cond(rule->cond, cur_proxy, t, txn, ACL_DIR_REQ); - if (cond->pol == ACL_COND_UNLESS) + if (rule->cond->pol == ACL_COND_UNLESS) ret = !ret; if (ret) {