From: Aurelien DARRAGON Date: Thu, 1 Feb 2024 08:53:10 +0000 (+0100) Subject: MINOR: tcp_act: fix alphabetical ordering of tcp request content actions X-Git-Tag: v3.0-dev3~119 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eea3b94514778df9761237a221936259bd02ea79;p=thirdparty%2Fhaproxy.git MINOR: tcp_act: fix alphabetical ordering of tcp request content actions "set-src" and "set-src-port" were misplaced and incorrectly ordered in tcp_req_cont_actions keyword list. --- diff --git a/src/tcp_act.c b/src/tcp_act.c index 8b44047d5b..a07d4c7a23 100644 --- a/src/tcp_act.c +++ b/src/tcp_act.c @@ -697,11 +697,11 @@ static struct action_kw_list tcp_req_sess_actions = {ILH, { INITCALL1(STG_REGISTER, tcp_req_sess_keywords_register, &tcp_req_sess_actions); static struct action_kw_list tcp_req_cont_actions = {ILH, { - { "set-src", tcp_parse_set_src_dst }, - { "set-src-port", tcp_parse_set_src_dst }, { "set-dst" , tcp_parse_set_src_dst }, { "set-dst-port", tcp_parse_set_src_dst }, { "set-mark", tcp_parse_set_mark }, + { "set-src", tcp_parse_set_src_dst }, + { "set-src-port", tcp_parse_set_src_dst }, { "set-tos", tcp_parse_set_tos }, { "silent-drop", tcp_parse_silent_drop }, { /* END */ }