]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1747] minor editorial fixes: unfold two short lines, brace position
authorJINMEI Tatuya <jinmei@isc.org>
Tue, 13 Mar 2012 03:50:39 +0000 (20:50 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Tue, 13 Mar 2012 03:50:39 +0000 (20:50 -0700)
src/bin/auth/query.cc

index 5e2935e3117f0e4bc04b758f1d367c68bb02854f..bc6d106b740886df3d36bccaeda3bbbb6276e9ec 100644 (file)
@@ -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();
 }