diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 00:28:46 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 00:28:46 +0000 |
commit | 151dec838bb5308f6ad0aaa092b1c4e1b1181cba (patch) | |
tree | 8be244d2cb87f05c318f86647fe476f407de8d69 /src | |
parent | 0a7f4a545c9568de3e86198e192bec904689cdf7 (diff) |
Validating wrong field
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3615 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/inspircd_io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index 0bd098b6c..cb34611af 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -336,7 +336,7 @@ void ServerConfig::Read(bool bail, userrec* user) {"options", "softlimit", &this->SoftLimit, DT_INTEGER, ValidateSoftLimit}, {"options", "somaxconn", &this->MaxConn, DT_INTEGER, ValidateMaxConn}, {"server", "name", &this->ServerName, DT_CHARPTR, ValidateServerName}, - {"server", "description", &this->ServerDesc, DT_CHARPTR, ValidateServerName}, + {"server", "description", &this->ServerDesc, DT_CHARPTR, NoValidation}, {"server", "network", &this->Network, DT_CHARPTR, NoValidation}, {"admin", "name", &this->AdminName, DT_CHARPTR, NoValidation}, {"admin", "email", &this->AdminEmail, DT_CHARPTR, NoValidation}, |