From: JINMEI Tatuya Date: Tue, 13 Mar 2012 03:50:39 +0000 (-0700) Subject: [1747] minor editorial fixes: unfold two short lines, brace position X-Git-Tag: trac2351_base~226^2~116^2~117^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d402d65a8aa0f271190b40f5e141c4e5ee7b31d;p=thirdparty%2Fkea.git [1747] minor editorial fixes: unfold two short lines, brace position --- diff --git a/src/bin/auth/query.cc b/src/bin/auth/query.cc index 5e2935e311..bc6d106b74 100644 --- a/src/bin/auth/query.cc +++ b/src/bin/auth/query.cc @@ -363,7 +363,8 @@ findZone(const DataSourceClient& client, const Name& qname, RRType qtype) { void Query::process(datasrc::DataSourceClient& datasrc_client, const isc::dns::Name qname, const isc::dns::RRType qtype, - isc::dns::Message& response, bool dnssec) { + isc::dns::Message& response, bool dnssec) +{ // First a bit of house cleaning // The call to reset() could in theory be ommitted, but // seems prudent, just in case a previous process() left @@ -569,16 +570,13 @@ Query::initialize(datasrc::DataSourceClient& datasrc_client, void Query::createResponse() { for_each(answers_.begin(), answers_.end(), - RRsetInserter(*response_, Message::SECTION_ANSWER, - dnssec_)); + RRsetInserter(*response_, Message::SECTION_ANSWER, dnssec_)); answers_.clear(); for_each(authorities_.begin(), authorities_.end(), - RRsetInserter(*response_, Message::SECTION_AUTHORITY, - dnssec_)); + RRsetInserter(*response_, Message::SECTION_AUTHORITY, dnssec_)); authorities_.clear(); for_each(additionals_.begin(), additionals_.end(), - RRsetInserter(*response_, Message::SECTION_ADDITIONAL, - dnssec_)); + RRsetInserter(*response_, Message::SECTION_ADDITIONAL, dnssec_)); additionals_.clear(); }