From 55af9e90f8a99edda4f46300f5768347b97b69af Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Tue, 2 Jun 2020 11:54:46 +0200 Subject: [PATCH] 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. --- src/ssl_crtlist.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ssl_crtlist.c b/src/ssl_crtlist.c index baeb81d47..01c107431 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);