From: Francis Dupont Date: Wed, 12 May 2021 09:46:31 +0000 (+0200) Subject: [(no branch, rebasing 1815-add-new-drop-points)] [(no branch, rebasing 1815-add-new... X-Git-Tag: Kea-1.9.8~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc25aa5e108598e2f74aed10f8728656db258087;p=thirdparty%2Fkea.git [(no branch, rebasing 1815-add-new-drop-points)] [(no branch, rebasing 1815-add-new-drop-points)] [#1815] Spelling --- diff --git a/src/bin/dhcp4/dhcp4_srv.cc b/src/bin/dhcp4/dhcp4_srv.cc index b8b9f6bcd2..8eee230894 100644 --- a/src/bin/dhcp4/dhcp4_srv.cc +++ b/src/bin/dhcp4/dhcp4_srv.cc @@ -2999,7 +2999,7 @@ Dhcpv4Srv::processDiscover(Pkt4Ptr& discover) { Dhcpv4Exchange ex(alloc_engine_, discover, subnet, drop); - // Stop here if Dhcpv4Exchange constructir decided to drop the packet + // Stop here if Dhcpv4Exchange constructor decided to drop the packet if (drop) { return (Pkt4Ptr()); } @@ -3070,7 +3070,7 @@ Dhcpv4Srv::processRequest(Pkt4Ptr& request, AllocEngine::ClientContext4Ptr& cont Dhcpv4Exchange ex(alloc_engine_, request, subnet, drop); - // Stop here if Dhcpv4Exchange constructir decided to drop the packet + // Stop here if Dhcpv4Exchange constructor decided to drop the packet if (drop) { return (Pkt4Ptr()); } @@ -3425,7 +3425,7 @@ Dhcpv4Srv::processInform(Pkt4Ptr& inform) { Dhcpv4Exchange ex(alloc_engine_, inform, subnet, drop); - // Stop here if Dhcpv4Exchange constructir decided to drop the packet + // Stop here if Dhcpv4Exchange constructor decided to drop the packet if (drop) { return (Pkt4Ptr()); }