mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-01 14:35:29 +00:00
[#2833] Fix typos
This commit is contained in:
committed by
Piotrek Zadroga
parent
d30ce1a390
commit
2b19d7bfc4
@@ -813,7 +813,7 @@ Subnet4::toElement() const {
|
|||||||
const auto& pools = getPools(Lease::TYPE_V4);
|
const auto& pools = getPools(Lease::TYPE_V4);
|
||||||
ElementPtr pool_list = Element::createList();
|
ElementPtr pool_list = Element::createList();
|
||||||
for (const auto& pool : pools) {
|
for (const auto& pool : pools) {
|
||||||
// Add the formated pool to the list
|
// Add the formatted pool to the list
|
||||||
pool_list->add(pool->toElement());
|
pool_list->add(pool->toElement());
|
||||||
}
|
}
|
||||||
map->set("pools", pool_list);
|
map->set("pools", pool_list);
|
||||||
@@ -921,7 +921,7 @@ Subnet6::toElement() const {
|
|||||||
const auto& pools = getPools(Lease::TYPE_NA);
|
const auto& pools = getPools(Lease::TYPE_NA);
|
||||||
ElementPtr pool_list = Element::createList();
|
ElementPtr pool_list = Element::createList();
|
||||||
for (const auto& pool : pools) {
|
for (const auto& pool : pools) {
|
||||||
// Add the formated pool to the list
|
// Add the formatted pool to the list
|
||||||
pool_list->add(pool->toElement());
|
pool_list->add(pool->toElement());
|
||||||
}
|
}
|
||||||
map->set("pools", pool_list);
|
map->set("pools", pool_list);
|
||||||
@@ -930,7 +930,7 @@ Subnet6::toElement() const {
|
|||||||
const auto& pdpools = getPools(Lease::TYPE_PD);
|
const auto& pdpools = getPools(Lease::TYPE_PD);
|
||||||
ElementPtr pdpool_list = Element::createList();
|
ElementPtr pdpool_list = Element::createList();
|
||||||
for (const auto& pool : pdpools) {
|
for (const auto& pool : pdpools) {
|
||||||
// Add the formated pool to the list
|
// Add the formatted pool to the list
|
||||||
pdpool_list->add(pool->toElement());
|
pdpool_list->add(pool->toElement());
|
||||||
}
|
}
|
||||||
map->set("pd-pools", pdpool_list);
|
map->set("pd-pools", pdpool_list);
|
||||||
|
Reference in New Issue
Block a user