]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1074] minor changes
authorRazvan Becheriu <razvan@isc.org>
Tue, 21 Jan 2020 09:15:26 +0000 (11:15 +0200)
committerRazvan Becheriu <razvan@isc.org>
Wed, 5 Feb 2020 21:00:32 +0000 (23:00 +0200)
src/lib/dhcpsrv/pgsql_host_data_source.cc

index a0b3412b99adf23a0c8f116867824c8fffe353a4..2d5a3381575e2c4bc477f2ad7f5c33ccb1607113 100644 (file)
@@ -1484,9 +1484,11 @@ public:
     /// @param single A boolean value indicating if a single host is
     /// expected to be returned, or multiple hosts.
     void getHostCollection(PgSqlHostContextPtr& ctx,
-                           StatementIndex stindex, PsqlBindArrayPtr bind,
+                           StatementIndex stindex,
+                           PsqlBindArrayPtr bind,
                            boost::shared_ptr<PgSqlHostExchange> exchange,
-                           ConstHostCollection& result, bool single) const;
+                           ConstHostCollection& result,
+                           bool single) const;
 
     /// @brief Retrieves a host by subnet and client's unique identifier.
     ///
@@ -2315,7 +2317,8 @@ PgSqlHostDataSource::add(const HostPtr& host) {
 }
 
 bool
-PgSqlHostDataSource::del(const SubnetID& subnet_id, const asiolink::IOAddress& addr) {
+PgSqlHostDataSource::del(const SubnetID& subnet_id,
+                         const asiolink::IOAddress& addr) {
     // Get a context
     PgSqlHostContextAlloc get_context(*impl_);
     PgSqlHostContextPtr ctx = get_context.ctx_;