From d7a0e7f149ccd9d4e4782c6d832521e952eb87df Mon Sep 17 00:00:00 2001 From: Razvan Becheriu Date: Tue, 21 Jan 2020 11:15:26 +0200 Subject: [PATCH] [#1074] minor changes --- src/lib/dhcpsrv/pgsql_host_data_source.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/lib/dhcpsrv/pgsql_host_data_source.cc b/src/lib/dhcpsrv/pgsql_host_data_source.cc index a0b3412b99..2d5a338157 100644 --- a/src/lib/dhcpsrv/pgsql_host_data_source.cc +++ b/src/lib/dhcpsrv/pgsql_host_data_source.cc @@ -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 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_;