diff --git a/include/proto/proto_tcp.h b/include/proto/proto_tcp.h index 4644452c42..af7e28a90f 100644 --- a/include/proto/proto_tcp.h +++ b/include/proto/proto_tcp.h @@ -60,7 +60,7 @@ static inline struct stktable_key *addr_to_stktable_key(struct sockaddr_storage } /* for a tcp-request action TCP_ACT_TRK_*, return a tracking index starting at - * zero for SC1. Unknown actions also return zero. + * zero for SC0. Unknown actions also return zero. */ static inline int tcp_trk_idx(int trk_action) { diff --git a/src/cfgparse.c b/src/cfgparse.c index c87ca4bd0a..7f521b1a79 100644 --- a/src/cfgparse.c +++ b/src/cfgparse.c @@ -6498,7 +6498,7 @@ int check_config_validity() if (!target) { Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", curproxy->id, trule->act_prm.trk_ctr.table.n, - 1 + tcp_trk_idx(trule->action)); + tcp_trk_idx(trule->action)); cfgerr++; } else if (target->table.size == 0) { @@ -6509,7 +6509,7 @@ int check_config_validity() else if (!stktable_compatible_sample(trule->act_prm.trk_ctr.expr, target->table.type)) { Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", curproxy->id, trule->act_prm.trk_ctr.table.n ? trule->act_prm.trk_ctr.table.n : curproxy->id, - 1 + tcp_trk_idx(trule->action)); + tcp_trk_idx(trule->action)); cfgerr++; } else { @@ -6537,7 +6537,7 @@ int check_config_validity() if (!target) { Alert("Proxy '%s': unable to find table '%s' referenced by track-sc%d.\n", curproxy->id, trule->act_prm.trk_ctr.table.n, - 1 + tcp_trk_idx(trule->action)); + tcp_trk_idx(trule->action)); cfgerr++; } else if (target->table.size == 0) { @@ -6548,7 +6548,7 @@ int check_config_validity() else if (!stktable_compatible_sample(trule->act_prm.trk_ctr.expr, target->table.type)) { Alert("Proxy '%s': stick-table '%s' uses a type incompatible with the 'track-sc%d' rule.\n", curproxy->id, trule->act_prm.trk_ctr.table.n ? trule->act_prm.trk_ctr.table.n : curproxy->id, - 1 + tcp_trk_idx(trule->action)); + tcp_trk_idx(trule->action)); cfgerr++; } else {