From 753dc98a810aaf33dcad1f604851e0316848458e Mon Sep 17 00:00:00 2001 From: tb <> Date: Sun, 4 Apr 2021 20:21:43 +0000 Subject: Fix two copy paste errors in error messages --- src/regress/lib/libssl/unit/ssl_methods.c | 6 +++--- 1 file 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 @@ -/* $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 * @@ -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; } -- cgit v1.2.3-55-g6feb