summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2017-10-05 17:27:04 +0100
committerPeter Powell <petpow@saberuk.com>2017-10-05 17:27:04 +0100
commit0c6c30e7148aa8ea79a2fae205f0e7153ddd1bf8 (patch)
tree23c1fd56715ae2fbed9c85f778ab0c4be79faff8 /src
parente4f89286df6642150e649820666e9463de74c6f7 (diff)
Fix the casemap name not being copied to the new ServerConfig.
Diffstat (limited to 'src')
-rw-r--r--src/configreader.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index faf75dfcc..d198a1d84 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -548,6 +548,7 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
/*
* These values can only be set on boot. Keep their old values. Do it before we send messages so we actually have a servername.
*/
+ this->CaseMapping = old->CaseMapping;
this->ServerName = old->ServerName;
this->sid = old->sid;
this->cmdline = old->cmdline;