diff options
| author | tb <> | 2020-11-20 08:03:53 +0000 |
|---|---|---|
| committer | tb <> | 2020-11-20 08:03:53 +0000 |
| commit | 57ee25f03699dffb7ef2796fd99109733617f757 (patch) | |
| tree | e8a151979a7117714e5326d56a841d8073130b21 /src | |
| parent | 16e933a00511444480ad7d42198f9a002055edea (diff) | |
| download | openbsd-57ee25f03699dffb7ef2796fd99109733617f757.tar.gz openbsd-57ee25f03699dffb7ef2796fd99109733617f757.tar.bz2 openbsd-57ee25f03699dffb7ef2796fd99109733617f757.zip | |
fix confusing line break and indent
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libssl/ssl_cert.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_cert.c b/src/lib/libssl/ssl_cert.c index 43e8331968..af1fc847db 100644 --- a/src/lib/libssl/ssl_cert.c +++ b/src/lib/libssl/ssl_cert.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ssl_cert.c,v 1.78 2020/06/05 17:55:24 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_cert.c,v 1.79 2020/11/20 08:03:53 tb Exp $ */ |
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 3 | * All rights reserved. | 3 | * All rights reserved. |
| 4 | * | 4 | * |
| @@ -595,8 +595,9 @@ SSL_load_client_CA_file(const char *file) | |||
| 595 | goto err; | 595 | goto err; |
| 596 | } | 596 | } |
| 597 | } | 597 | } |
| 598 | if ((xn = X509_get_subject_name(x)) == NULL) goto err; | 598 | if ((xn = X509_get_subject_name(x)) == NULL) |
| 599 | /* check for duplicates */ | 599 | goto err; |
| 600 | /* check for duplicates */ | ||
| 600 | xn = X509_NAME_dup(xn); | 601 | xn = X509_NAME_dup(xn); |
| 601 | if (xn == NULL) | 602 | if (xn == NULL) |
| 602 | goto err; | 603 | goto err; |
