and no ssl in here.

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9113 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
peavey 2008-03-16 22:15:50 +00:00
parent 5ea029c74c
commit b40bd0f7ab

View File

@ -537,7 +537,6 @@ class ModuleSQLite3 : public Module
host.name = conf.ReadValue("database", "name", i);
host.user = conf.ReadValue("database", "username", i);
host.pass = conf.ReadValue("database", "password", i);
host.ssl = conf.ReadFlag("database", "ssl", "0", i);
if (h == host)
return true;
}
@ -559,7 +558,6 @@ class ModuleSQLite3 : public Module
host.name = conf.ReadValue("database", "name", i);
host.user = conf.ReadValue("database", "username", i);
host.pass = conf.ReadValue("database", "password", i);
host.ssl = conf.ReadFlag("database", "ssl", "0", i);
if (HasHost(host))
continue;