mirror of https://github.com/Icinga/icinga2.git
Fixed typo that caused TLSClient::WantsToRead() to fail.
This commit is contained in:
parent
fa9449fc73
commit
6ab5f710b8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue