From: Daniel Stenberg Date: Thu, 19 May 2022 15:54:30 +0000 (+0200) Subject: wolfssl: correct the failf() message when a handle can't be made X-Git-Tag: curl-7_84_0~165 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a7a18d75895dde6729b69e5e7e33c5d64becdf18;p=thirdparty%2Fcurl.git wolfssl: correct the failf() message when a handle can't be made Closes #8885 --- 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; }