summaryrefslogtreecommitdiff
path: root/lib/libssl
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2020-11-20 08:08:03 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2020-11-20 08:08:03 +0000
commitae898d9f9543faccbf2e9fb0b31116b0af634198 (patch)
tree9d02c2531e2fdaf3d76d332c122b4c7178474611 /lib/libssl
parent88110544a69227a3e6d57c360ae3ad3d4a42b49a (diff)
fix another misleading line break and indent
Diffstat (limited to 'lib/libssl')
-rw-r--r--lib/libssl/ssl_cert.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libssl/ssl_cert.c b/lib/libssl/ssl_cert.c
index af1fc847db2..2e0dca58eab 100644
--- a/lib/libssl/ssl_cert.c
+++ b/lib/libssl/ssl_cert.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_cert.c,v 1.79 2020/11/20 08:03:53 tb Exp $ */
+/* $OpenBSD: ssl_cert.c,v 1.80 2020/11/20 08:08:02 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -657,8 +657,9 @@ SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
for (;;) {
if (PEM_read_bio_X509(in, &x, NULL, NULL) == NULL)
break;
- if ((xn = X509_get_subject_name(x)) == NULL) goto err;
- xn = X509_NAME_dup(xn);
+ if ((xn = X509_get_subject_name(x)) == NULL)
+ goto err;
+ xn = X509_NAME_dup(xn);
if (xn == NULL)
goto err;
if (sk_X509_NAME_find(stack, xn) >= 0)