]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix a minor typo in ssl.h
authorB00mX0r <b00mx0r@aureus.pw>
Thu, 31 Jan 2019 09:26:06 +0000 (01:26 -0800)
committerPeter Powell <petpow@saberuk.com>
Fri, 1 Feb 2019 09:43:32 +0000 (09:43 +0000)
include/modules/ssl.h

index 69bd65009eb52783248d4fbf81b230fd04401903..701c0d1f42465e64267a57912fc194f761a61863 100644 (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 "";
        }