diff options
author | Robby <robby@chat.be> | 2012-08-08 17:09:34 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-08-08 17:09:34 -0400 |
commit | f7bf2fa9604d93f36a0025d9890d174ad2576a6a (patch) | |
tree | dc554ea6c528579c05bf55feb95649656af82a1c /src | |
parent | b894a569c93035c6e0e315afb77d299bd3824eb9 (diff) |
Put motd in conf/ not data/ and fixed the default values in the config
Diffstat (limited to 'src')
-rw-r--r-- | src/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.cpp b/src/config.cpp index 2be666a82..0ec4fb34e 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -1154,7 +1154,7 @@ ConfigItems::ConfigItems(ServerConfig *conf) {"serverinfo", "localhost", "", new ValueContainerString(&conf->LocalHost), DT_HOSTNAME | DT_NORELOAD, NoValidation}, {"serverinfo", "id", "", new ValueContainerString(&conf->Numeric), DT_NOSPACES | DT_NORELOAD, NoValidation}, {"serverinfo", "pid", "data/services.pid", new ValueContainerString(&conf->PIDFilename), DT_STRING | DT_NORELOAD, ValidateNotEmpty}, - {"serverinfo", "motd", "data/services.motd", new ValueContainerString(&conf->MOTDFilename), DT_STRING, ValidateNotEmpty}, + {"serverinfo", "motd", "conf/services.motd", new ValueContainerString(&conf->MOTDFilename), DT_STRING, ValidateNotEmpty}, {"networkinfo", "networkname", "", new ValueContainerString(&conf->NetworkName), DT_STRING, ValidateNotEmpty}, {"networkinfo", "nicklen", "31", new ValueContainerUInt(&conf->NickLen), DT_UINTEGER | DT_NORELOAD, ValidateNickLen}, {"networkinfo", "userlen", "10", new ValueContainerUInt(&conf->UserLen), DT_UINTEGER | DT_NORELOAD, NoValidation}, |