diff options
author | 2021-01-09 12:39:22 +0000 | |
---|---|---|
committer | 2021-01-09 12:39:22 +0000 | |
commit | 1ceb37a1f5d708bf435e2f56c7bf46c46593fca4 (patch) | |
tree | be6981317d2af688162a659458b5f3b06a5e178e | |
parent | Adjust kexfuzz to addr.c/addrmatch.c split. (diff) | |
download | wireguard-openbsd-1ceb37a1f5d708bf435e2f56c7bf46c46593fca4.tar.xz wireguard-openbsd-1ceb37a1f5d708bf435e2f56c7bf46c46593fca4.zip |
whitespace
-rw-r--r-- | regress/lib/libssl/unit/cipher_list.c | 4 | ||||
-rw-r--r-- | regress/lib/libssl/unit/ssl_versions.c | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/regress/lib/libssl/unit/cipher_list.c b/regress/lib/libssl/unit/cipher_list.c index 70f547abd60..9a5d9781408 100644 --- a/regress/lib/libssl/unit/cipher_list.c +++ b/regress/lib/libssl/unit/cipher_list.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cipher_list.c,v 1.9 2018/06/02 16:35:02 jsing Exp $ */ +/* $OpenBSD: cipher_list.c,v 1.10 2021/01/09 12:39:22 tb Exp $ */ /* * Copyright (c) 2015 Doug Hogan <doug@openbsd.org> * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> @@ -199,6 +199,6 @@ err: if (!rv) printf("PASS %s\n", __FILE__); - + return rv; } diff --git a/regress/lib/libssl/unit/ssl_versions.c b/regress/lib/libssl/unit/ssl_versions.c index 31c20114cf5..251de789ea4 100644 --- a/regress/lib/libssl/unit/ssl_versions.c +++ b/regress/lib/libssl/unit/ssl_versions.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_versions.c,v 1.9 2020/08/09 16:30:29 jsing Exp $ */ +/* $OpenBSD: ssl_versions.c,v 1.10 2021/01/09 12:39:23 tb Exp $ */ /* * Copyright (c) 2016, 2017 Joel Sing <jsing@openbsd.org> * @@ -193,7 +193,7 @@ test_ssl_enabled_version_range(void) int failed = 1; size_t i; - if ((ssl_ctx = SSL_CTX_new(TLS_method())) == NULL) { + if ((ssl_ctx = SSL_CTX_new(TLS_method())) == NULL) { fprintf(stderr, "SSL_CTX_new() returned NULL\n"); goto failure; } @@ -440,7 +440,7 @@ test_ssl_max_shared_version(void) for (i = 0; i < N_SHARED_VERSION_TESTS; i++) { svt = &shared_version_tests[i]; - if ((ssl_ctx = SSL_CTX_new(svt->ssl_method())) == NULL) { + if ((ssl_ctx = SSL_CTX_new(svt->ssl_method())) == NULL) { fprintf(stderr, "SSL_CTX_new() returned NULL\n"); return 1; } @@ -661,7 +661,7 @@ test_ssl_min_max_version(void) for (i = 0; i < N_MIN_MAX_VERSION_TESTS; i++) { mmvt = &min_max_version_tests[i]; - if ((ssl_ctx = SSL_CTX_new(mmvt->ssl_method())) == NULL) { + if ((ssl_ctx = SSL_CTX_new(mmvt->ssl_method())) == NULL) { fprintf(stderr, "SSL_CTX_new() returned NULL\n"); return 1; } @@ -803,5 +803,5 @@ main(int argc, char **argv) if (failed == 0) printf("PASS %s\n", __FILE__); - return (failed); + return (failed); } |