summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2013-07-10 13:38:00 +0100
committerPeter Powell <petpow@saberuk.com>2013-08-10 14:04:09 +0100
commit28190fc82a9aefba5edfba7ddcef34a878775311 (patch)
tree03d6a9c1db69f7447dc1bd902226c96c71f5ef8d /src
parente486994e8477e8b8ee02fa540b55700c9977e102 (diff)
Change the default for <security:customversion> to an empty string.
RFC 1459 says this field is for comments about the version. If the operator has no comments then we should not show any.
Diffstat (limited to 'src')
-rw-r--r--src/configreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 8e5a1c2a9..005b156ed 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -399,7 +399,7 @@ void ServerConfig::Fill()
DisabledCommands = ConfValue("disabled")->getString("commands", "");
DisabledDontExist = ConfValue("disabled")->getBool("fakenonexistant");
UserStats = security->getString("userstats");
- CustomVersion = security->getString("customversion", Network + " IRCd");
+ CustomVersion = security->getString("customversion");
HideSplits = security->getBool("hidesplits");
HideBans = security->getBool("hidebans");
HideWhoisServer = security->getString("hidewhois");