From: Gunnar Beutner Date: Tue, 24 Apr 2012 17:53:47 +0000 (+0200) Subject: Fixed typo that caused TLSClient::WantsToRead() to fail. X-Git-Tag: v0.0.1~586 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ab5f710b84fbf7498192386f3e967387014f80c;p=icinga2 Fixed typo that caused TLSClient::WantsToRead() to fail. --- diff --git a/base/tlsclient.cpp b/base/tlsclient.cpp index f51360ce0..05bfaf259 100644 --- a/base/tlsclient.cpp +++ b/base/tlsclient.cpp @@ -121,7 +121,7 @@ bool TLSClient::WantsToRead(void) const if (SSL_want_read(m_SSL.get())) return true; - return TCPClient::WantsToWrite(); + return TCPClient::WantsToRead(); } bool TLSClient::WantsToWrite(void) const