]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
openssl: fix unable do typo in failf() calls
authorYedaya Katsman <yedaya.ka@gmail.com>
Sun, 19 Oct 2025 18:26:17 +0000 (21:26 +0300)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 19 Oct 2025 21:42:54 +0000 (23:42 +0200)
Closes #19149

lib/vtls/openssl.c

index 66c0fbfabdaaaa6d05255007a3f1083ee0b7f1c8..c580d6cc67af5468c5c6100be043795b34c7622e 100644 (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()));