diff options
| author | 2007-08-03 21:46:14 +0000 | |
|---|---|---|
| committer | 2007-08-03 21:46:14 +0000 | |
| commit | ea4da0eb2d0eb58ba12bafab51de672d2c45c440 (patch) | |
| tree | f1795e4799c1664f7df4b69c0195163f4f10cafb /src/modules | |
| parent | Add VF_COMMON to a lot modules which require it. Reported by danielg in bug #... (diff) | |
| download | inspircd++-ea4da0eb2d0eb58ba12bafab51de672d2c45c440.tar.gz inspircd++-ea4da0eb2d0eb58ba12bafab51de672d2c45c440.tar.bz2 inspircd++-ea4da0eb2d0eb58ba12bafab51de672d2c45c440.zip | |
Attempt fix for openssl buffer issue (fix was already here but experimental and commented out)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7644 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/extra/m_ssl_openssl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/extra/m_ssl_openssl.cpp b/src/modules/extra/m_ssl_openssl.cpp index ee273bbe3..5e5a853b4 100644 --- a/src/modules/extra/m_ssl_openssl.cpp +++ b/src/modules/extra/m_ssl_openssl.cpp @@ -810,10 +810,10 @@ class ModuleSSLOpenSSL : public Module void MakePollWrite(issl_session* session) { - OnRawSocketWrite(session->fd, NULL, 0); - //EventHandler* eh = ServerInstance->FindDescriptor(session->fd); - //if (eh) - // ServerInstance->SE->WantWrite(eh); + //OnRawSocketWrite(session->fd, NULL, 0); + EventHandler* eh = ServerInstance->FindDescriptor(session->fd); + if (eh) + ServerInstance->SE->WantWrite(eh); } void CloseSession(issl_session* session) |
