diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-11-20 08:03:54 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-11-20 08:03:54 +0000 |
commit | 88110544a69227a3e6d57c360ae3ad3d4a42b49a (patch) | |
tree | 89091407b5847875dab63ea93b9bbb678c9bd607 /lib/libssl/ssl_cert.c | |
parent | 663976e7b8dbd86e6c349d6943e561aab15205fe (diff) |
fix confusing line break and indent
Diffstat (limited to 'lib/libssl/ssl_cert.c')
-rw-r--r-- | lib/libssl/ssl_cert.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libssl/ssl_cert.c b/lib/libssl/ssl_cert.c index 43e83319689..af1fc847db2 100644 --- a/lib/libssl/ssl_cert.c +++ b/lib/libssl/ssl_cert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_cert.c,v 1.78 2020/06/05 17:55:24 jsing Exp $ */ +/* $OpenBSD: ssl_cert.c,v 1.79 2020/11/20 08:03:53 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -595,8 +595,9 @@ SSL_load_client_CA_file(const char *file) goto err; } } - if ((xn = X509_get_subject_name(x)) == NULL) goto err; - /* check for duplicates */ + if ((xn = X509_get_subject_name(x)) == NULL) + goto err; + /* check for duplicates */ xn = X509_NAME_dup(xn); if (xn == NULL) goto err; |