From: tb Date: Sun, 11 Jun 2023 11:54:44 +0000 (+0000) Subject: openssl enc: small style fixup after ZLIB unifdef X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=35f962d35df62dd39ae66fb7a3b13d1f96dbd722;p=openbsd openssl enc: small style fixup after ZLIB unifdef --- diff --git a/usr.bin/openssl/enc.c b/usr.bin/openssl/enc.c index 9e330ce5cb5..e9830af5f2e 100644 --- a/usr.bin/openssl/enc.c +++ b/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; }