mirror of
https://github.com/curl/curl.git
synced 2026-04-15 02:01:40 +03:00
wolfssl: correct the failf() message when a handle can't be made
Closes #8885
This commit is contained in:
parent
a820c55a72
commit
a7a18d7589
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue