From: Suzanne Goldlust Date: Wed, 21 Jun 2023 19:52:02 +0000 (+0000) Subject: [#2833] Fix typos X-Git-Tag: Kea-2.4.0~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b19d7bfc4cd7c3bac5bd5b7e3c9fb853d88b61b;p=thirdparty%2Fkea.git [#2833] Fix typos --- diff --git a/src/lib/dhcpsrv/subnet.cc b/src/lib/dhcpsrv/subnet.cc index c591ea94b7..2e480d474b 100644 --- a/src/lib/dhcpsrv/subnet.cc +++ b/src/lib/dhcpsrv/subnet.cc @@ -813,7 +813,7 @@ Subnet4::toElement() const { const auto& pools = getPools(Lease::TYPE_V4); ElementPtr pool_list = Element::createList(); for (const auto& pool : pools) { - // Add the formated pool to the list + // Add the formatted pool to the list pool_list->add(pool->toElement()); } map->set("pools", pool_list); @@ -921,7 +921,7 @@ Subnet6::toElement() const { const auto& pools = getPools(Lease::TYPE_NA); ElementPtr pool_list = Element::createList(); for (const auto& pool : pools) { - // Add the formated pool to the list + // Add the formatted pool to the list pool_list->add(pool->toElement()); } map->set("pools", pool_list); @@ -930,7 +930,7 @@ Subnet6::toElement() const { const auto& pdpools = getPools(Lease::TYPE_PD); ElementPtr pdpool_list = Element::createList(); for (const auto& pool : pdpools) { - // Add the formated pool to the list + // Add the formatted pool to the list pdpool_list->add(pool->toElement()); } map->set("pd-pools", pdpool_list);