X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fsslserver.h;h=306bd8ef82b460e14b5223aad30a11f0e376f550;hb=94899dd5e482868ca01a3de3857e47a46d996553;hp=6b5e5c8f204aa3e289a79b1b8792ea752cb7628a;hpb=d85397ae518ecbfbad66c8c8a74eee92d77656db;p=quassel.git diff --git a/src/core/sslserver.h b/src/core/sslserver.h index 6b5e5c8f..306bd8ef 100644 --- a/src/core/sslserver.h +++ b/src/core/sslserver.h @@ -39,7 +39,7 @@ public: virtual inline const QSslCertificate &certificate() const { return _cert; } virtual inline const QSslKey &key() const { return _key; } - virtual inline bool certIsValid() const { return _certIsValid; } + virtual inline bool isCertValid() const { return _isCertValid; } protected: virtual void incomingConnection(int socketDescriptor); @@ -49,7 +49,7 @@ private: QLinkedList _pendingConnections; QSslCertificate _cert; QSslKey _key; - bool _certIsValid; + bool _isCertValid; }; #endif //HAVE_SSL