diff options
author | Attila Molnar <attilamolnar@hush.com> | 2012-07-05 12:15:19 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2012-07-05 12:15:19 -0700 |
commit | 13eef9a8e06effb5981729cc6c2b11aa0fb940cf (patch) | |
tree | ccbcf2a852edb76b50b44850ab88dfd59989e1b2 | |
parent | 0c6bb6f536eecf1f06fb020b2e9ad7ba67d0ede5 (diff) | |
parent | 432a8eda44a05b7d081c56a295b0decf6eb18cd5 (diff) |
Merge pull request #243 from SaberUK/insp20-config-deprecation
Explicitly deprecate some config changes.
-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() |