Browse Source

[5033] Removed no longer relevant enable-udpates false test

D2ClientConfigParser:parse() - removed the enable-updates false
test as it is both irrelevant and broken (map size will never be 1)
Thomas Markwalder 8 years ago
parent
commit
7a79bacb01
1 changed files with 0 additions and 8 deletions
  1. 0 8
      src/lib/dhcpsrv/parsers/dhcp_parsers.cc

+ 0 - 8
src/lib/dhcpsrv/parsers/dhcp_parsers.cc

@@ -1264,14 +1264,6 @@ D2ClientConfigParser::parse(isc::data::ConstElementPtr client_config) {
     try {
         current_param = "enable-updates";
         enable_updates = getBoolean(client_config, current_param);
-        if (!enable_updates && (client_config->mapValue().size() == 1)) {
-            // If enable-updates is the only parameter and it is false then
-            // we're done.  This allows for an abbreviated configuration entry
-            // that only contains that flag.  Use the default D2ClientConfig
-            // constructor to a create a disabled instance.
-            new_config.reset(new D2ClientConfig());
-            return (new_config);
-        }
 
         current_param = "server-ip";
         server_ip = IOAddress(getString(client_config, (current_param)));