The branch openssl-3.0 has been updated via d259be3fe23a6af97fb901699b096d6fb329b357 (commit) from 9fa43878ec74f8fa1aa70d9838d913e1c843c4e3 (commit)
- Log ----------------------------------------------------------------- commit d259be3fe23a6af97fb901699b096d6fb329b357 Author: Matt Caswell <m...@openssl.org> Date: Wed Jan 26 12:35:30 2022 +0000 Ensure ciphers command honours -propquery Any propquery passed via the -propquery option to the ciphers command was being ignored. Reviewed-by: Tomas Mraz <to...@openssl.org> Reviewed-by: Paul Dale <pa...@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17595) (cherry picked from commit 4ed381736b063284bdbd5d302988617aa4366a3f) ----------------------------------------------------------------------- Summary of changes: apps/ciphers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ciphers.c b/apps/ciphers.c index 9c494224a1..50bff07c29 100644 --- a/apps/ciphers.c +++ b/apps/ciphers.c @@ -187,7 +187,7 @@ int ciphers_main(int argc, char **argv) goto end; } - ctx = SSL_CTX_new(meth); + ctx = SSL_CTX_new_ex(app_get0_libctx(), app_get0_propq(), meth); if (ctx == NULL) goto err; if (SSL_CTX_set_min_proto_version(ctx, min_version) == 0)