wolfssl: correct the failf() message when a handle can't be made

Closes #8885
This commit is contained in:
Daniel Stenberg 2022-05-19 17:54:30 +02:00
parent a820c55a72
commit a7a18d7589
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View 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;
}