diff options
author | tb <> | 2021-04-04 20:21:43 +0000 |
---|---|---|
committer | tb <> | 2021-04-04 20:21:43 +0000 |
commit | 753dc98a810aaf33dcad1f604851e0316848458e (patch) | |
tree | deb863cc630684d050df72f5c0580da0994de715 | |
parent | 52b60b492f01c5f475401d73cba0c0d13c3c413f (diff) | |
download | openbsd-753dc98a810aaf33dcad1f604851e0316848458e.tar.gz openbsd-753dc98a810aaf33dcad1f604851e0316848458e.tar.bz2 openbsd-753dc98a810aaf33dcad1f604851e0316848458e.zip |
Fix two copy paste errors in error messages
-rw-r--r-- | src/regress/lib/libssl/unit/ssl_methods.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libssl/unit/ssl_methods.c b/src/regress/lib/libssl/unit/ssl_methods.c index 216ba937e1..0fc33a406c 100644 --- a/src/regress/lib/libssl/unit/ssl_methods.c +++ b/src/regress/lib/libssl/unit/ssl_methods.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_methods.c,v 1.3 2021/04/04 20:16:29 tb Exp $ */ | 1 | /* $OpenBSD: ssl_methods.c,v 1.4 2021/04/04 20:21:43 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2020 Theo Buehler <tb@openbsd.org> | 3 | * Copyright (c) 2020 Theo Buehler <tb@openbsd.org> |
4 | * | 4 | * |
@@ -198,7 +198,7 @@ test_client_or_server_method(struct ssl_method_test_data *testcase) | |||
198 | } | 198 | } |
199 | 199 | ||
200 | if ((ssl = SSL_new(ssl_ctx)) == NULL) { | 200 | if ((ssl = SSL_new(ssl_ctx)) == NULL) { |
201 | fprintf(stderr, "SSL_CTX_new returned NULL\n"); | 201 | fprintf(stderr, "SSL_new returned NULL\n"); |
202 | goto err; | 202 | goto err; |
203 | } | 203 | } |
204 | 204 | ||
@@ -230,7 +230,7 @@ test_dtls_method(struct ssl_method_test_data *testcase) | |||
230 | } | 230 | } |
231 | 231 | ||
232 | if ((ssl = SSL_new(ssl_ctx)) == NULL) { | 232 | if ((ssl = SSL_new(ssl_ctx)) == NULL) { |
233 | fprintf(stderr, "SSL_CTX_new returned NULL\n"); | 233 | fprintf(stderr, "SSL_new returned NULL\n"); |
234 | goto err; | 234 | goto err; |
235 | } | 235 | } |
236 | 236 | ||