diff options
| author | tb <> | 2021-04-04 20:21:43 +0000 |
|---|---|---|
| committer | tb <> | 2021-04-04 20:21:43 +0000 |
| commit | d42af442f81400ec76c789218240bddfaabc5494 (patch) | |
| tree | deb863cc630684d050df72f5c0580da0994de715 /src | |
| parent | 8b749f28f85a9f2950a61ef89c66f9b06ffea950 (diff) | |
| download | openbsd-d42af442f81400ec76c789218240bddfaabc5494.tar.gz openbsd-d42af442f81400ec76c789218240bddfaabc5494.tar.bz2 openbsd-d42af442f81400ec76c789218240bddfaabc5494.zip | |
Fix two copy paste errors in error messages
Diffstat (limited to 'src')
| -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 | ||
