mirror of https://github.com/openssl/openssl.git
Let the output from 'openssl enc -ciphers' go to stdout
Also, don't exit with an error code Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2716)
This commit is contained in:
parent
50799f3558
commit
341de5f199
|
@ -134,10 +134,11 @@ int enc_main(int argc, char **argv)
|
||||||
ret = 0;
|
ret = 0;
|
||||||
goto end;
|
goto end;
|
||||||
case OPT_LIST:
|
case OPT_LIST:
|
||||||
BIO_printf(bio_err, "Supported ciphers:\n");
|
BIO_printf(bio_out, "Supported ciphers:\n");
|
||||||
OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH,
|
OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH,
|
||||||
show_ciphers, bio_err);
|
show_ciphers, bio_out);
|
||||||
BIO_printf(bio_err, "\n");
|
BIO_printf(bio_out, "\n");
|
||||||
|
ret = 0;
|
||||||
goto end;
|
goto end;
|
||||||
case OPT_E:
|
case OPT_E:
|
||||||
enc = 1;
|
enc = 1;
|
||||||
|
|
Loading…
Reference in New Issue