summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2022-07-19 20:15:19 +0000
committertb <>2022-07-19 20:15:19 +0000
commitec2e701cc9dc8074434759b4102c781a20adb990 (patch)
treeb3f4d5e05cacb870b27888fc676996a38f048c7d
parentce5bb6f35d38838c80c83c98dd399492b7734e26 (diff)
downloadopenbsd-ec2e701cc9dc8074434759b4102c781a20adb990.tar.gz
openbsd-ec2e701cc9dc8074434759b4102c781a20adb990.tar.bz2
openbsd-ec2e701cc9dc8074434759b4102c781a20adb990.zip
fix indent
-rw-r--r--src/usr.bin/openssl/ciphers.c4
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) {