From: Alexander Traud Date: Tue, 23 Mar 2021 16:32:44 +0000 (+0100) Subject: ssl/ssl_ciph.c: update format string, again X-Git-Tag: openssl-3.0.0-alpha14~115 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6b2e51dd36c2f7f1ec24e84288324a12cfe3549e;p=thirdparty%2Fopenssl.git ssl/ssl_ciph.c: update format string, again Commit 2664810 changed everything except the encoding. Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/14673) --- diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c index 80014a31fd4..1de8959506d 100644 --- a/ssl/ssl_ciph.c +++ b/ssl/ssl_ciph.c @@ -1676,7 +1676,7 @@ char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len) const char *ver; const char *kx, *au, *enc, *mac; uint32_t alg_mkey, alg_auth, alg_enc, alg_mac; - static const char *format = "%-30s %-7s Kx=%-8s Au=%-5s Enc=%-9s Mac=%-4s\n"; + static const char *format = "%-30s %-7s Kx=%-8s Au=%-5s Enc=%-22s Mac=%-4s\n"; if (buf == NULL) { len = 128;