From f19e2c85e77032867de9d62dfb1cfb7cca557f7b Mon Sep 17 00:00:00 2001 From: om Date: Mon, 23 Jan 2006 15:07:08 +0000 Subject: Don't try and kill off remote ssl users git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2861 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/extra/m_ssl_gnutls.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/modules/extra/m_ssl_gnutls.cpp b/src/modules/extra/m_ssl_gnutls.cpp index c0bc93c0e..a5c292736 100644 --- a/src/modules/extra/m_ssl_gnutls.cpp +++ b/src/modules/extra/m_ssl_gnutls.cpp @@ -196,9 +196,9 @@ class ModuleSSL : public Module { userrec* user = (userrec*)item; - if(user->GetExt("ssl") && isin(user->port, listenports)) + if(user->GetExt("ssl") && (user->fd > -1) && isin(user->port, listenports)) { - // User is using SSL, and they're using one of *our* SSL ports. + // User is using SSL, they're a local user, and they're using one of *our* SSL ports. // Potentially there could be multiple SSL modules loaded at once on different ports. log(DEBUG, "m_ssl_gnutls.so: Adding user %s to cull list", user->nick); culllist.AddItem(user, "SSL module unloading"); -- cgit v1.2.3