diff options
author | tb <> | 2022-07-19 20:15:19 +0000 |
---|---|---|
committer | tb <> | 2022-07-19 20:15:19 +0000 |
commit | 27b42db95cf44f4e067ecf425ebe5da4553f2e4e (patch) | |
tree | b3f4d5e05cacb870b27888fc676996a38f048c7d /src/usr.bin | |
parent | b3b7058cd369b60d092b3ae09b5056a71a2a5bcc (diff) | |
download | openbsd-27b42db95cf44f4e067ecf425ebe5da4553f2e4e.tar.gz openbsd-27b42db95cf44f4e067ecf425ebe5da4553f2e4e.tar.bz2 openbsd-27b42db95cf44f4e067ecf425ebe5da4553f2e4e.zip |
fix indent
Diffstat (limited to 'src/usr.bin')
-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) { |