From: om Date: Mon, 23 Jan 2006 15:07:08 +0000 (+0000) Subject: Don't try and kill off remote ssl users X-Git-Tag: v2.0.23~9220 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=f19e2c85e77032867de9d62dfb1cfb7cca557f7b;p=user%2Fhenk%2Fcode%2Finspircd.git 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 --- 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");