diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/ciphers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/ciphers.c b/src/usr.bin/openssl/ciphers.c index e0e870459c..583db1167b 100644 --- a/src/usr.bin/openssl/ciphers.c +++ b/src/usr.bin/openssl/ciphers.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ciphers.c,v 1.14 2022/07/19 16:07:35 tb Exp $ */ | 1 | /* $OpenBSD: ciphers.c,v 1.15 2022/07/19 20:15:19 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -174,7 +174,7 @@ ciphers_main(int argc, char **argv) | |||
174 | if (ciphers_config.verbose > 1) { | 174 | if (ciphers_config.verbose > 1) { |
175 | value = SSL_CIPHER_get_value(cipher); | 175 | value = SSL_CIPHER_get_value(cipher); |
176 | fprintf(stdout, "%-*s0x%02X,0x%02X - ", 10, "", | 176 | fprintf(stdout, "%-*s0x%02X,0x%02X - ", 10, "", |
177 | ((value >> 8) & 0xff), (value & 0xff)); | 177 | ((value >> 8) & 0xff), (value & 0xff)); |
178 | } | 178 | } |
179 | desc = SSL_CIPHER_description(cipher, NULL, 0); | 179 | desc = SSL_CIPHER_description(cipher, NULL, 0); |
180 | if (strcmp(desc, "OPENSSL_malloc Error") == 0) { | 180 | if (strcmp(desc, "OPENSSL_malloc Error") == 0) { |