diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-04-04 20:21:44 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-04-04 20:21:44 +0000 |
commit | 17f7b24dff932062d432dd89c508f680aa2ae727 (patch) | |
tree | 4adfef63cca760b98cc613f84af1eb74ee01fe4f /regress | |
parent | 9fac8fc79ff0c574b9f2bb93b9945c1a07619c44 (diff) |
Fix two copy paste errors in error messages
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/unit/ssl_methods.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libssl/unit/ssl_methods.c b/regress/lib/libssl/unit/ssl_methods.c index 216ba937e1b..0fc33a406c2 100644 --- a/regress/lib/libssl/unit/ssl_methods.c +++ b/regress/lib/libssl/unit/ssl_methods.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_methods.c,v 1.3 2021/04/04 20:16:29 tb Exp $ */ +/* $OpenBSD: ssl_methods.c,v 1.4 2021/04/04 20:21:43 tb Exp $ */ /* * Copyright (c) 2020 Theo Buehler <tb@openbsd.org> * @@ -198,7 +198,7 @@ test_client_or_server_method(struct ssl_method_test_data *testcase) } if ((ssl = SSL_new(ssl_ctx)) == NULL) { - fprintf(stderr, "SSL_CTX_new returned NULL\n"); + fprintf(stderr, "SSL_new returned NULL\n"); goto err; } @@ -230,7 +230,7 @@ test_dtls_method(struct ssl_method_test_data *testcase) } if ((ssl = SSL_new(ssl_ctx)) == NULL) { - fprintf(stderr, "SSL_CTX_new returned NULL\n"); + fprintf(stderr, "SSL_new returned NULL\n"); goto err; } |