From a7a18d75895dde6729b69e5e7e33c5d64becdf18 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 19 May 2022 17:54:30 +0200 Subject: [PATCH] wolfssl: correct the failf() message when a handle can't be made Closes #8885 --- lib/vtls/wolfssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vtls/wolfssl.c b/lib/vtls/wolfssl.c index da8cb82ce2..a8b6aa17d4 100644 --- a/lib/vtls/wolfssl.c +++ b/lib/vtls/wolfssl.c @@ -503,7 +503,7 @@ wolfssl_connect_step1(struct Curl_easy *data, struct connectdata *conn, SSL_free(backend->handle); backend->handle = SSL_new(backend->ctx); if(!backend->handle) { - failf(data, "SSL: couldn't create a context"); + failf(data, "SSL: couldn't create a handle"); return CURLE_OUT_OF_MEMORY; } -- 2.47.3