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.
This commit is contained in:
William Lallemand 2020-06-02 11:54:46 +02:00 committed by William Lallemand
parent 50df1cb1e5
commit 55af9e90f8

View File

@ -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 */ /* 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 (conf->ssl_methods_cfg.min) {
if (space) chunk_appendf(buf, " "); if (space) chunk_appendf(buf, " ");
chunk_appendf(buf, "ssl-min-ver %s", methodVersions[conf->ssl_methods_cfg.min].name); chunk_appendf(buf, "ssl-min-ver %s", methodVersions[conf->ssl_methods_cfg.min].name);