Fix a minor typo in ssl.h

This commit is contained in:
B00mX0r 2019-01-31 01:26:06 -08:00 committed by Peter Powell
parent a580cacb19
commit e844a2cef9

View File

@ -206,7 +206,7 @@ class SSLIOHook : public IOHook
std::string GetFingerprint() const
{
ssl_cert* cert = GetCertificate();
if (cert && certificate->IsUsable())
if (cert && cert->IsUsable())
return cert->GetFingerprint();
return "";
}