Fix bug #779, SSL metadata sent using the wrong case. Thanks HiroP

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11213 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
danieldg 2009-03-13 23:16:34 +00:00
parent 284c22b4b5
commit c0487eae4c
2 changed files with 2 additions and 2 deletions

View File

@ -696,7 +696,7 @@ class ModuleSSLGnuTLS : public Module
if (user->GetIOHook() == this && (IS_LOCAL(user)))
{
// Tell whatever protocol module we're using that we need to inform other servers of this metadata NOW.
ServerInstance->PI->SendMetaData(user, TYPE_USER, "SSL", "on");
ServerInstance->PI->SendMetaData(user, TYPE_USER, "ssl", "on");
VerifyCertificate(&sessions[user->GetFd()],user);
if (sessions[user->GetFd()].sess)

View File

@ -778,7 +778,7 @@ class ModuleSSLOpenSSL : public Module
if ((user->GetIOHook() == this) && (IS_LOCAL(user)))
{
// Tell whatever protocol module we're using that we need to inform other servers of this metadata NOW.
ServerInstance->PI->SendMetaData(user, TYPE_USER, "SSL", "on");
ServerInstance->PI->SendMetaData(user, TYPE_USER, "ssl", "on");
VerifyCertificate(&sessions[user->GetFd()], user);
if (sessions[user->GetFd()].sess)