2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-03 15:35:17 +00:00

[#1139] Fixed typos in .cc/h files

Fixed typos in the comments within the dhcp4_srv and dhcp6_srv per review
comments.
This commit is contained in:
Marcin Siodelski
2020-03-19 09:43:56 +01:00
parent 4d5944f9e7
commit 2ac4e47cb5
3 changed files with 5 additions and 5 deletions

View File

@@ -2897,7 +2897,7 @@ Dhcpv4Srv::processDiscover(Pkt4Ptr& discover) {
// Adding any other options makes sense only when we got the lease.
if (!ex.getResponse()->getYiaddr().isV4Zero()) {
// If this is global reservation or the subnet doesn't belong to a shared
// networkwe have already fetched it and evaluated the classes.
// network we have already fetched it and evaluated the classes.
ex.conditionallySetReservedClientClasses();
// Required classification
@@ -2967,7 +2967,7 @@ Dhcpv4Srv::processRequest(Pkt4Ptr& request, AllocEngine::ClientContext4Ptr& cont
// Adding any other options makes sense only when we got the lease.
if (!response->getYiaddr().isV4Zero()) {
// If this is global reservation or the subnet doesn't belong to a shared
// networkwe have already fetched it and evaluated the classes.
// network we have already fetched it and evaluated the classes.
ex.conditionallySetReservedClientClasses();
// Required classification
@@ -3283,7 +3283,7 @@ Dhcpv4Srv::processInform(Pkt4Ptr& inform) {
Pkt4Ptr ack = ex.getResponse();
// If this is global reservation or the subnet doesn't belong to a shared
// networkwe have already fetched it and evaluated the classes.
// network we have already fetched it and evaluated the classes.
ex.conditionallySetReservedClientClasses();
requiredClassify(ex);