Remove unused variables

This commit is contained in:
Gunnar Beutner 2015-03-02 12:52:37 +01:00
parent 1bcc1a7b92
commit bb393a9d4f
2 changed files with 0 additions and 3 deletions

View File

@ -193,8 +193,6 @@ void TlsStream::OnEvent(int revents)
err = SSL_get_error(m_SSL.get(), rc);
std::ostringstream msgbuf;
switch (err) {
case SSL_ERROR_WANT_READ:
m_Retry = true;

View File

@ -78,7 +78,6 @@ void InitializeOpenSSL(void)
*/
boost::shared_ptr<SSL_CTX> MakeSSLContext(const String& pubkey, const String& privkey, const String& cakey)
{
std::ostringstream msgbuf;
char errbuf[120];
InitializeOpenSSL();