From 99934c1bfe944f81afb165229a8684af8e592ee0 Mon Sep 17 00:00:00 2001 From: tb <> Date: Tue, 3 Nov 2020 18:50:25 +0000 Subject: Wrap remaining overlong lines. --- src/usr.bin/openssl/verify.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/usr.bin/openssl/verify.c b/src/usr.bin/openssl/verify.c index 95e3fa02eb..22b5aa663c 100644 --- a/src/usr.bin/openssl/verify.c +++ b/src/usr.bin/openssl/verify.c @@ -1,4 +1,4 @@ -/* $OpenBSD: verify.c,v 1.12 2020/11/03 18:47:19 tb Exp $ */ +/* $OpenBSD: verify.c,v 1.13 2020/11/03 18:50:25 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -324,14 +324,14 @@ verify_main(int argc, char **argv) ERR_clear_error(); if (verify_config.untfile) { - untrusted = load_certs(bio_err, verify_config.untfile, FORMAT_PEM, - NULL, "untrusted certificates"); + untrusted = load_certs(bio_err, verify_config.untfile, + FORMAT_PEM, NULL, "untrusted certificates"); if (!untrusted) goto end; } if (verify_config.trustfile) { - trusted = load_certs(bio_err, verify_config.trustfile, FORMAT_PEM, - NULL, "trusted certificates"); + trusted = load_certs(bio_err, verify_config.trustfile, + FORMAT_PEM, NULL, "trusted certificates"); if (!trusted) goto end; } @@ -347,8 +347,8 @@ verify_main(int argc, char **argv) ret = -1; } else { do { - if (1 != check(cert_ctx, *cert_files++, untrusted, trusted, - crls)) + if (1 != check(cert_ctx, *cert_files++, untrusted, + trusted, crls)) ret = -1; } while (*cert_files != NULL); } -- cgit v1.2.3-55-g6feb