Fix missing semicolon in m_ssl_openssl [danieldg]

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10464 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
w00t 2008-09-07 23:19:52 +00:00
parent 7a30c818ee
commit bfff438589

View File

@ -326,7 +326,7 @@ class ModuleSSLOpenSSL : public Module
// 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.
ServerInstance->Users->QuitUser(user, "SSL module unloading");
user->DelIOHook()
user->DelIOHook();
}
if (user->GetExt("ssl_cert", dummy))
{