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

[5122] spelling & find -> get

This commit is contained in:
Francis Dupont
2017-01-27 17:28:53 +01:00
parent 523deee862
commit 0878ad28fa

View File

@@ -197,7 +197,7 @@ protected:
subnet_ = subnet4;
// Set the match-client-id value for the subnet. It is always present.
// If not explicitly specified, the default value was filed in when
// If not explicitly specified, the default value was filled in when
// SimpleParser4::setAllDefaults was called.
bool match_client_id = getBoolean(params, "match-client-id");
subnet4->setMatchClientId(match_client_id);
@@ -212,7 +212,7 @@ protected:
subnet4->setSiaddr(IOAddress(next_server));
}
} catch (...) {
ConstElementPtr next = params->find("next-server");
ConstElementPtr next = params->get("next-server");
string pos("(missing)");
if (next)
pos = next->getPosition().str();