From: Razvan Becheriu Date: Fri, 17 Jan 2020 13:11:26 +0000 (+0200) Subject: [#1040] reverted some changes X-Git-Tag: Kea-1.7.4~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e57f523f52e76cd9cbac893d5aacae2ed8d112ff;p=thirdparty%2Fkea.git [#1040] reverted some changes --- diff --git a/src/lib/dhcpsrv/cql_lease_mgr.cc b/src/lib/dhcpsrv/cql_lease_mgr.cc index 24acdf6809..1ac260b26c 100644 --- a/src/lib/dhcpsrv/cql_lease_mgr.cc +++ b/src/lib/dhcpsrv/cql_lease_mgr.cc @@ -835,7 +835,8 @@ CqlLease4Exchange::getExpiredLeases(const size_t &max_leases, // Retrieve leases from the database. Lease4Collection temp_collection; - getLeaseCollection(CqlLease4Exchange::GET_LEASE4_EXPIRE, data, temp_collection); + getLeaseCollection(CqlLease4Exchange::GET_LEASE4_EXPIRE, data, + temp_collection); for (Lease4Ptr &lease : temp_collection) { expired_leases.push_back(lease); @@ -1672,7 +1673,8 @@ CqlLease6Exchange::getExpiredLeases(const size_t &max_leases, // Retrieve leases from the database. Lease6Collection temp_collection; - getLeaseCollection(CqlLease6Exchange::GET_LEASE6_EXPIRE, data, temp_collection); + getLeaseCollection(CqlLease6Exchange::GET_LEASE6_EXPIRE, data, + temp_collection); for (Lease6Ptr &lease : temp_collection) { expired_leases.push_back(lease);