X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsslserver.h;h=306bd8ef82b460e14b5223aad30a11f0e376f550;hp=6b5e5c8f204aa3e289a79b1b8792ea752cb7628a;hb=dc2aa39d20b60e7cd8e0ba66ca6c9ed729add008;hpb=ffcc8befd931340321e3aa2029cb5667373fd584 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