From: Willy Tarreau Date: Thu, 5 Mar 2009 18:15:37 +0000 (+0100) Subject: [BUG] the "connslots" keyword was matched as "connlots" X-Git-Tag: v1.3.16-rc1~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a8efeb46d16bf06b8c5fbd33acdf7cfcea64555;p=thirdparty%2Fhaproxy.git [BUG] the "connslots" keyword was matched as "connlots" This bug has been lying there since the patch got merged. --- diff --git a/src/backend.c b/src/backend.c index ed291dacf7..73fb1129f7 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 }, }};