From 3a8efeb46d16bf06b8c5fbd33acdf7cfcea64555 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Thu, 5 Mar 2009 19:15:37 +0100 Subject: [PATCH] [BUG] the "connslots" keyword was matched as "connlots" This bug has been lying there since the patch got merged. --- src/backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend.c b/src/backend.c index ed291dacf..73fb1129f 100644 --- a/src/backend.c +++ b/src/backend.c @@ -2100,7 +2100,7 @@ acl_fetch_connslots(struct proxy *px, struct session *l4, void *l7, int dir, /* Note: must not be declared as its list will be overwritten */ static struct acl_kw_list acl_kws = {{ },{ { "nbsrv", acl_parse_int, acl_fetch_nbsrv, acl_match_int, ACL_USE_NOTHING }, - { "connlots", acl_parse_int, acl_fetch_connslots, acl_match_int, ACL_USE_NOTHING }, + { "connslots", acl_parse_int, acl_fetch_connslots, acl_match_int, ACL_USE_NOTHING }, { NULL, NULL, NULL, NULL }, }};