X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fchannels.cpp;h=7f2485a49903ebcf4ebe34b77432bc4da7bf555f;hb=1e09b2cb1e2a5989163fff02cad5498ad151bd00;hp=30bddec5c2bd3470a8e0954343b82d938f4f98cc;hpb=2706a993b3f8ee52e2728047fad6a56f7e3cf405;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/channels.cpp b/src/channels.cpp index 30bddec5c..7f2485a49 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -58,7 +58,7 @@ void Channel::SetTopic(User* u, const std::string& ntopic, time_t topicts, const // Always update setter and set time if (!setter) setter = ServerInstance->Config->FullHostInTopic ? &u->GetFullHost() : &u->nick; - this->setby.assign(*setter, 0, 128); + this->setby.assign(*setter, 0, ServerInstance->Config->Limits.GetMaxMask()); this->topicset = topicts; FOREACH_MOD(OnPostTopicChange, (u, this, this->topic));