From: Peter Powell Date: Thu, 5 Oct 2017 16:27:04 +0000 (+0100) Subject: Fix the casemap name not being copied to the new ServerConfig. X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=0c6c30e7148aa8ea79a2fae205f0e7153ddd1bf8;p=user%2Fhenk%2Fcode%2Finspircd.git Fix the casemap name not being copied to the new ServerConfig. --- 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;