diff --git a/src/Network/Http.cpp b/src/Network/Http.cpp index 9fcf128..56bf491 100644 --- a/src/Network/Http.cpp +++ b/src/Network/Http.cpp @@ -87,12 +87,6 @@ std::string HTTP::Get(const std::string& IP) { error("Curl easy init failed"); return ""; } - auto result = cli.get_openssl_verify_result(); - std::string verify_error; - if (result) { - verify_error = X509_verify_cert_error_string(result); - } - return Ret; }