]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
wolfssl: correct the failf() message when a handle can't be made
authorDaniel Stenberg <daniel@haxx.se>
Thu, 19 May 2022 15:54:30 +0000 (17:54 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 19 May 2022 17:05:17 +0000 (19:05 +0200)
Closes #8885

lib/vtls/wolfssl.c

index da8cb82ce23e5a5ef85aa3e631cb7eececf99a17..a8b6aa17d45a159d42a29b2b228f9a301c43c46d 100644 (file)
@@ -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;
   }