diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-10 01:48:43 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-10 01:48:43 +0000 |
commit | 9ed56e9e02c0532a981d6f30c8e03a29dafc56da (patch) | |
tree | 852ea24a0c84e8a8794e584853c59a06b89c7684 | |
parent | f0a75392b6bea27aa9b334036b53c644573bd419 (diff) |
Why are we wasting space on DieValue?
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12418 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/configreader.h | 5 | ||||
-rw-r--r-- | src/configreader.cpp | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/include/configreader.h b/include/configreader.h index 112736439..c63b46779 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -336,11 +336,6 @@ class CoreExport ServerConfig */ std::string FixedPart; - /** The last string found within a <die> tag, or - * an empty string. - */ - std::string DieValue; - /** The DNS server to use for DNS queries */ std::string DNSServer; diff --git a/src/configreader.cpp b/src/configreader.cpp index 20cc0c2b3..5b430afe1 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -470,7 +470,6 @@ void ServerConfig::Fill() WhoWasGroupSize = ConfValue("whowas")->getInt("groupsize"); WhoWasMaxGroups = ConfValue("whowas")->getInt("maxgroups"); WhoWasMaxKeep = ServerInstance->Duration(ConfValue("whowas")->getString("maxkeep")); - DieValue = ConfValue("die")->getString("value"); MaxChans = ConfValue("channels")->getInt("users", 20); OperMaxChans = ConfValue("channels")->getInt("opers", 60); c_ipv4_range = ConfValue("cidr")->getInt("ipv4clone", 32); |