From 255eef6bb1995eab7ab2d49c2cdb78074d9eefa2 Mon Sep 17 00:00:00 2001
From: tb <>
Date: Sun, 11 Jun 2023 11:54:44 +0000
Subject: openssl enc: small style fixup after ZLIB unifdef

---
 src/usr.bin/openssl/enc.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

(limited to 'src')

diff --git a/src/usr.bin/openssl/enc.c b/src/usr.bin/openssl/enc.c
index 9e330ce5cb..e9830af5f2 100644
--- a/src/usr.bin/openssl/enc.c
+++ b/src/usr.bin/openssl/enc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: enc.c,v 1.28 2023/06/11 05:45:20 tb Exp $ */
+/* $OpenBSD: enc.c,v 1.29 2023/06/11 11:54:44 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -362,9 +362,7 @@ enc_main(int argc, char **argv)
 
 	cfg.cipher = EVP_get_cipherbyname(pname);
 
-	if (!cfg.base64 && cfg.cipher == NULL &&
-	    strcmp(pname, "enc") != 0)
-	{
+	if (!cfg.base64 && cfg.cipher == NULL && strcmp(pname, "enc") != 0) {
 		BIO_printf(bio_err, "%s is an unknown cipher\n", pname);
 		goto end;
 	}
-- 
cgit v1.2.3-55-g6feb