From: Christopher Faulet Date: Thu, 4 Feb 2021 09:12:05 +0000 (+0100) Subject: DOC: server: Add missing params in comment of the server state line parsing X-Git-Tag: v2.4-dev7~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8979a9b5997122bfef697a3d8a6d284dab4a9ff;p=thirdparty%2Fhaproxy.git DOC: server: Add missing params in comment of the server state line parsing srv_use_ssl and srv_check_port parameters were not mentionned in the comment of the function parsing a server state line. --- diff --git a/src/server.c b/src/server.c index ba85bb8782..da2325e9ab 100644 --- a/src/server.c +++ b/src/server.c @@ -3110,6 +3110,8 @@ static void srv_state_parse_line(char *buf, const int version, char **params, ch * srv_fqdn: params[17] => srv_params[13] * srv_port: params[18] => srv_params[14] * srvrecord: params[19] => srv_params[15] + * srv_use_ssl: params[20] => srv_params[16] + * srv_check_port: params[21] => srv_params[17] */ if (arg >= 4) { srv_params[srv_arg] = cur;