aboutsummaryrefslogtreecommitdiff
path: root/src/server.cpp
diff options
context:
space:
mode:
authorGravatar Peter Powell2013-11-24 15:05:12 +0000
committerGravatar Peter Powell2013-12-15 06:46:44 +0000
commit07d0d8f52f361c64b3c16d7e432f475cd2131a28 (patch)
tree9b20aa6e1916a0a7f96cd9c9793be57a48d38cb8 /src/server.cpp
parentMove stuff around a bit: (diff)
Remove some pointless code:
- Remove the CHARSET entry from ISUPPORT. CHARSET was removed in draft-brocklesby-irc-isupport-03 and we always used the default value anyway. This has also been removed in the latest version of Charybdis. - Remove irc::sockets::satouser. This helper method was longer than the code it replaced.
Diffstat (limited to 'src/server.cpp')
-rw-r--r--src/server.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/server.cpp b/src/server.cpp
index 4974b8501..1d1f52641 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -172,7 +172,6 @@ void ISupportManager::Build()
tokens["CHANMODES"] = ServerInstance->Modes->GiveModeList(MASK_CHANNEL);
tokens["CHANNELLEN"] = ConvToStr(ServerInstance->Config->Limits.ChanMax);
tokens["CHANTYPES"] = "#";
- tokens["CHARSET"] = "ascii";
tokens["ELIST"] = "MU";
tokens["KICKLEN"] = ConvToStr(ServerInstance->Config->Limits.MaxKick);
tokens["MAXBANS"] = "64"; // TODO: make this a config setting.