diff options
author | 2020-11-20 08:03:53 +0000 | |
---|---|---|
committer | 2020-11-20 08:03:53 +0000 | |
commit | 7110bbb10a192c2c938f5dd7ec5c2c68670f7ba4 (patch) | |
tree | 2c63f41713711568b7554831d89987dade88d982 /lib/libssl/ssl_cert.c | |
parent | Fix comment _SYS_VIDEOIO_H -> _SYS_VIDEOIO_H_ (diff) | |
download | wireguard-openbsd-7110bbb10a192c2c938f5dd7ec5c2c68670f7ba4.tar.xz wireguard-openbsd-7110bbb10a192c2c938f5dd7ec5c2c68670f7ba4.zip |
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; |