]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Made <disabled> non-manditory, added check for when singular tags arent defined at all
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sun, 15 Jan 2006 20:45:09 +0000 (20:45 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sun, 15 Jan 2006 20:45:09 +0000 (20:45 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2808 e03df62e-2008-0410-955e-edbf42e46eb7

src/inspircd_io.cpp

index b71fc2f1e44206e7b990bf93286ab6eba2d8b130..3716057aff3bb559a1088c65891f421e7f33fef9 100644 (file)
@@ -96,7 +96,8 @@ bool ServerConfig::DelIOHook(int port)
 
 bool ServerConfig::CheckOnce(char* tag, bool bail, userrec* user)
 {
-       if (ConfValueEnum(tag,&Config->config_f) > 1)
+       int count = ConfValueEnum(tag,&Config->config_f);
+       if (count > 1)
        {
                if (bail)
                {
@@ -118,6 +119,28 @@ bool ServerConfig::CheckOnce(char* tag, bool bail, userrec* user)
                }
                return false;
        }
+       if (count < 1)
+       {
+               if (bail)
+               {
+                       printf("There were errors in your configuration:\nYou have not defined a <%s> tag, this is required.",tag);
+                       Exit(0);
+               }
+               else
+               {
+                       if (user)
+                       {
+                               WriteServ(user->fd,"There were errors in your configuration:");
+                               WriteServ(user->fd,"You have not defined a <%s> tag, this is required.",tag);
+                       }
+                       else
+                       {
+                               WriteOpers("There were errors in the configuration file:");
+                               WriteOpers("You have not defined a <%s> tag, this is required.",tag);
+                       }
+               }
+               return false;
+       }
        return true;
 }
 
@@ -167,8 +190,7 @@ void ServerConfig::Read(bool bail, userrec* user)
         */
        if (!CheckOnce("server",bail,user) || !CheckOnce("admin",bail,user) || !CheckOnce("files",bail,user)
                || !CheckOnce("power",bail,user) || !CheckOnce("options",bail,user)
-               || !CheckOnce("dns",bail,user) || !CheckOnce("options",bail,user)
-               || !CheckOnce("disabled",bail,user) || !CheckOnce("pid",bail,user))
+               || !CheckOnce("dns",bail,user) || !CheckOnce("pid",bail,user))
        {
                return;
        }