fix indent
authortb <tb@openbsd.org>
Tue, 19 Jul 2022 20:15:19 +0000 (20:15 +0000)
committertb <tb@openbsd.org>
Tue, 19 Jul 2022 20:15:19 +0000 (20:15 +0000)
usr.bin/openssl/ciphers.c

index e0e8704..583db11 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ciphers.c,v 1.14 2022/07/19 16:07:35 tb Exp $ */
+/* $OpenBSD: ciphers.c,v 1.15 2022/07/19 20:15:19 tb Exp $ */
 /*
  * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
  *
@@ -174,7 +174,7 @@ ciphers_main(int argc, char **argv)
                if (ciphers_config.verbose > 1) {
                        value = SSL_CIPHER_get_value(cipher);
                        fprintf(stdout, "%-*s0x%02X,0x%02X - ", 10, "",
-                               ((value >> 8) & 0xff), (value & 0xff));
+                           ((value >> 8) & 0xff), (value & 0xff));
                }
                desc = SSL_CIPHER_description(cipher, NULL, 0);
                if (strcmp(desc, "OPENSSL_malloc Error") == 0) {