Fixed typo that caused TLSClient::WantsToRead() to fail.

This commit is contained in:
Gunnar Beutner 2012-04-24 19:53:47 +02:00
parent fa9449fc73
commit 6ab5f710b8
1 changed files with 1 additions and 1 deletions

View File

@ -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