2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 05:55:28 +00:00

[5017] version parameter removed from both Dhcp4 and Dhcp6 parsers

This commit is contained in:
Tomek Mrugalski
2016-12-20 16:25:01 +01:00
parent e357f559f1
commit 313cdfdd54
8 changed files with 1 additions and 85 deletions

View File

@@ -428,8 +428,7 @@ DhcpConfigParser* createGlobalDhcp4ConfigParser(const std::string& config_id,
parser = new OptionDataListParser(config_id, CfgOptionPtr(), AF_INET);
} else if (config_id.compare("option-def") == 0) {
parser = new OptionDefListParser(config_id, globalContext());
} else if ((config_id.compare("version") == 0) ||
(config_id.compare("next-server") == 0)) {
} else if ((config_id.compare("next-server") == 0)) {
parser = new StringParser(config_id,
globalContext()->string_values_);
} else if (config_id.compare("lease-database") == 0) {