diff options
| author | 2012-07-05 12:15:19 -0700 | |
|---|---|---|
| committer | 2012-07-05 12:15:19 -0700 | |
| commit | 13eef9a8e06effb5981729cc6c2b11aa0fb940cf (patch) | |
| tree | ccbcf2a852edb76b50b44850ab88dfd59989e1b2 /src/configreader.cpp | |
| parent | m_spanningtree Fix crash in SVSPART handler when the given channel doesn't exist (diff) | |
| parent | Explicitly deprecate some config changes. (diff) | |
| download | inspircd++-13eef9a8e06effb5981729cc6c2b11aa0fb940cf.tar.gz inspircd++-13eef9a8e06effb5981729cc6c2b11aa0fb940cf.tar.bz2 inspircd++-13eef9a8e06effb5981729cc6c2b11aa0fb940cf.zip | |
Merge pull request #243 from SaberUK/insp20-config-deprecation
Explicitly deprecate some config changes.
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index b0bb6a92f..1e6d96d0d 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -436,8 +436,11 @@ static const Deprecated ChangedConfig[] = { {"options", "somaxconn", "has been moved to <performance:somaxconn> as of 1.2a3"}, {"options", "netbuffersize", "has been moved to <performance:netbuffersize> as of 1.2a3"}, {"options", "maxwho", "has been moved to <performance:maxwho> as of 1.2a3"}, - {"options", "loglevel", "1.2 does not use the loglevel value. Please define <log> tags instead."}, + {"options", "loglevel", "1.2+ does not use the loglevel value. Please define <log> tags instead."}, {"die", "value", "you need to reread your config"}, + {"bind", "transport", "has been moved to <bind:ssl> as of 2.0a1"}, + {"link", "transport", "has been moved to <link:ssl> as of 2.0a1"}, + }; void ServerConfig::Fill() |
