]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/server.cpp
Remove current time parameter of the Timer constructor
[user/henk/code/inspircd.git] / src / server.cpp
index ac638a08c17ca42771b23b10fbf67645ecdf965c..66466fae94cbdbbd65e86566c1526b0370eee561 100644 (file)
@@ -61,7 +61,7 @@ void InspIRCd::Rehash(const std::string& uuid)
        if (!ServerInstance->ConfigThread)
        {
                ServerInstance->ConfigThread = new ConfigReaderThread(uuid);
-               ServerInstance->Threads->Start(ServerInstance->ConfigThread);
+               ServerInstance->Threads.Start(ServerInstance->ConfigThread);
        }
 }
 
@@ -193,7 +193,7 @@ void ISupportManager::Build()
        std::map<std::string, std::string>::iterator extban = tokens.find("EXTBAN");
        if (extban != tokens.end())
        {
-               sort(extban->second.begin(), extban->second.end());
+               std::sort(extban->second.begin(), extban->second.end());
                extban->second.insert(0, ",");
        }