BUG/MINOR: ssl/cli: "show ssl crt-list" lacks sigals
1d3c8223 ("MINOR: ssl: allow to change the server signature algorithm") mplemented the sigals keyword in the crt-list but never the dump of the keyword over the CLI. Must be backported as far as 2.8.
This commit is contained in:
parent
037d2e5498
commit
5a7cbb8d81
@ -966,6 +966,12 @@ static void dump_crtlist_conf(struct buffer *buf, const struct ssl_bind_conf *co
|
|||||||
space++;
|
space++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (conf->sigalgs) {
|
||||||
|
if (space) chunk_appendf(buf, " ");
|
||||||
|
chunk_appendf(buf, "sigalgs %s", conf->sigalgs);
|
||||||
|
space++;
|
||||||
|
}
|
||||||
|
|
||||||
/* the crt-lists only support ssl-min-ver and ssl-max-ver */
|
/* the crt-lists only support ssl-min-ver and ssl-max-ver */
|
||||||
if (conf->ssl_methods_cfg.min) {
|
if (conf->ssl_methods_cfg.min) {
|
||||||
if (space) chunk_appendf(buf, " ");
|
if (space) chunk_appendf(buf, " ");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user