From 392f0827abc8b9f98024792c44c73970ea6b519b Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 19 Jul 2022 20:15:19 +0000 Subject: [PATCH] fix indent --- usr.bin/openssl/ciphers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/openssl/ciphers.c b/usr.bin/openssl/ciphers.c index e0e870459ca..583db1167ba 100644 --- a/usr.bin/openssl/ciphers.c +++ b/usr.bin/openssl/ciphers.c @@ -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 * @@ -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) { -- 2.20.1