diff --git a/apps/ciphers.c b/apps/ciphers.c index cc71e50049f305569b1c79f85e9d354b33b10f9e..e51fac11ee59834265220a35477a37abd63cba02 100644 --- a/apps/ciphers.c +++ b/apps/ciphers.c @@ -247,7 +247,7 @@ int ciphers_main(int argc, char **argv) const char *nm = SSL_CIPHER_standard_name(c); if (nm == NULL) nm = "UNKNOWN"; - BIO_printf(bio_out, "%s - ", nm); + BIO_printf(bio_out, "%-45s - ", nm); } BIO_puts(bio_out, SSL_CIPHER_description(c, buf, sizeof(buf))); }