diff --git a/src/lib/dhcpsrv/alloc_engine.cc b/src/lib/dhcpsrv/alloc_engine.cc index 2d55ef4b73..84c025a028 100644 --- a/src/lib/dhcpsrv/alloc_engine.cc +++ b/src/lib/dhcpsrv/alloc_engine.cc @@ -1892,9 +1892,8 @@ Lease6Ptr AllocEngine::createLease6(ClientContext6& ctx, } else { // That is only fake (SOLICIT without rapid-commit) allocation - // It is for advertise only. We should not insert the lease - // into LeaseMgr and callers have already verified the lease - // does not exist in the database. + // It is for advertise only. We should not insert the lease and callers + // have already verified the lease does not exist in the database. return (lease); } } @@ -3739,9 +3738,8 @@ AllocEngine::createLease4(const ClientContext4& ctx, const IOAddress& addr, } else { // That is only fake (DISCOVER) allocation - // It is for OFFER only. We should not insert the lease into LeaseMgr - // and callers have already verified the lease does not exist - // in the database. + // It is for OFFER only. We should not insert the lease and callers + // have already verified the lease does not exist in the database. return (lease); } }