diff options
author | Cronus <cronus@nite-serv.com> | 2012-08-08 04:28:33 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-08-08 04:28:33 -0400 |
commit | b894a569c93035c6e0e315afb77d299bd3824eb9 (patch) | |
tree | 2c5b2223b77f25de2bbe606b42c6f754004e53db /src | |
parent | 48022c3ddfaa162f546c8fd7235586a2c7f36fc8 (diff) |
Update pid and motd file paths
Diffstat (limited to 'src')
-rw-r--r-- | src/config.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.cpp b/src/config.cpp index 2c0e264f2..2be666a82 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -1153,8 +1153,8 @@ ConfigItems::ConfigItems(ServerConfig *conf) {"serverinfo", "description", "", new ValueContainerString(&conf->ServerDesc), DT_STRING | DT_NORELOAD, ValidateNotEmpty}, {"serverinfo", "localhost", "", new ValueContainerString(&conf->LocalHost), DT_HOSTNAME | DT_NORELOAD, NoValidation}, {"serverinfo", "id", "", new ValueContainerString(&conf->Numeric), DT_NOSPACES | DT_NORELOAD, NoValidation}, - {"serverinfo", "pid", "services.pid", new ValueContainerString(&conf->PIDFilename), DT_STRING | DT_NORELOAD, ValidateNotEmpty}, - {"serverinfo", "motd", "services.motd", new ValueContainerString(&conf->MOTDFilename), DT_STRING, ValidateNotEmpty}, + {"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}, {"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}, |