diff options
author | Peter Powell <petpow@saberuk.com> | 2012-07-05 01:57:40 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2012-07-05 01:57:40 +0100 |
commit | 432a8eda44a05b7d081c56a295b0decf6eb18cd5 (patch) | |
tree | 7e9005f7a97f305fa591611d752b338b828c6f13 /src/configreader.cpp | |
parent | 7998173bcebb06e5e43e3337cc029eba3389199f (diff) |
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() |