From: William Lallemand Date: Tue, 2 Jun 2020 09:54:46 +0000 (+0200) Subject: CLEANUP: ssl: remove comment from dump_crtlist_sslconf() X-Git-Tag: v2.2-dev9~164 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=55af9e90f8a99edda4f46300f5768347b97b69af;p=thirdparty%2Fhaproxy.git CLEANUP: ssl: remove comment from dump_crtlist_sslconf() Since 8177ad9 ("MINOR: ssl: split config and runtime variable for ssl-{min,max}-ver"), the dump for ssl-min-ver and ssl-max-ver is fixed, so we can remove the comment. --- diff --git a/src/ssl_crtlist.c b/src/ssl_crtlist.c index baeb81d47b..01c1074317 100644 --- a/src/ssl_crtlist.c +++ b/src/ssl_crtlist.c @@ -701,7 +701,6 @@ static void dump_crtlist_sslconf(struct buffer *buf, const struct ssl_bind_conf } /* the crt-lists only support ssl-min-ver and ssl-max-ver */ - /* XXX: this part need to be revamp so we don't dump the default settings */ if (conf->ssl_methods_cfg.min) { if (space) chunk_appendf(buf, " "); chunk_appendf(buf, "ssl-min-ver %s", methodVersions[conf->ssl_methods_cfg.min].name);