]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Tidyup a few var inits for whowas and ircu style prefix.
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 26 Dec 2006 00:54:20 +0000 (00:54 +0000)
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 26 Dec 2006 00:54:20 +0000 (00:54 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6114 e03df62e-2008-0410-955e-edbf42e46eb7

src/configreader.cpp

index 4ac41b1d5c17b0911b02b54be9158c30cb0f75ed..0c5949e496a1f3599b8440c7035f00db937996e6 100644 (file)
@@ -27,8 +27,9 @@ ServerConfig::ServerConfig(InspIRCd* Instance) : ServerInstance(Instance)
        *HideWhoisServer = *AdminEmail = *AdminNick = *diepass = *restartpass = '\0';
        *CustomVersion = *motd = *rules = *PrefixQuit = *DieValue = *DNSServer = '\0';
        *UserStats = *ModPath = *MyExecutable = *DisabledCommands = *PID = '\0';
+       WhoWasGroupSize = WhoWasMaxGroups = WhoWasMaxKeep = 0;
        log_file = NULL;
-       NoUserDns = forcedebug = OperSpyWhois = nofork = HideBans = HideSplits = false;
+       NoUserDns = forcedebug = OperSpyWhois = nofork = HideBans = HideSplits = UndernetMsgPrefix = false;
        CycleHosts = writelog = AllowHalfop = true;
        dns_timeout = DieDelay = 5;
        MaxTargets = 20;
@@ -39,9 +40,6 @@ ServerConfig::ServerConfig(InspIRCd* Instance) : ServerInstance(Instance)
        debugging = 0;
        LogLevel = DEFAULT;
        maxbans.clear();
-       WhoWasGroupSize = 10;
-       WhoWasMaxGroups = WhoWasGroupSize * MAXCLIENTS;
-       WhoWasMaxKeep = 3600*24*3; // 3 days
 }
 
 void ServerConfig::ClearStack()