openssl: fix unable do typo in failf() calls

Closes #19149
This commit is contained in:
Yedaya Katsman 2025-10-19 21:26:17 +03:00 committed by Daniel Stenberg
parent d8a7aad061
commit 55e0526566
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -1251,7 +1251,7 @@ static int enginecheck(struct Curl_easy *data,
UI_METHOD *ui_method =
UI_create_method(OSSL_UI_METHOD_CAST("curl user interface"));
if(!ui_method) {
failf(data, "unable do create " OSSL_PACKAGE " user-interface method");
failf(data, "unable to create " OSSL_PACKAGE " user-interface method");
return 0;
}
UI_method_set_opener(ui_method, UI_method_get_opener(UI_OpenSSL()));
@ -1313,7 +1313,7 @@ static int providercheck(struct Curl_easy *data,
UI_METHOD *ui_method =
UI_create_method(OSSL_UI_METHOD_CAST("curl user interface"));
if(!ui_method) {
failf(data, "unable do create " OSSL_PACKAGE " user-interface method");
failf(data, "unable to create " OSSL_PACKAGE " user-interface method");
return 0;
}
UI_method_set_opener(ui_method, UI_method_get_opener(UI_OpenSSL()));