]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1207] some trivial editorial changes
authorJINMEI Tatuya <jinmei@isc.org>
Thu, 17 May 2012 23:02:10 +0000 (16:02 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Thu, 17 May 2012 23:02:10 +0000 (16:02 -0700)
src/bin/auth/tests/auth_srv_unittest.cc
src/bin/auth/tests/command_unittest.cc
src/lib/datasrc/memory_datasrc_link.cc

index 2f1f404a318dafba228ece96f9c58ba2a1e84eaa..fdd47ba04cda18708ade74201e78e3a965cfffce 100644 (file)
@@ -1261,15 +1261,14 @@ public:
 
     isc::datasrc::ZoneUpdaterPtr
     getUpdater(const isc::dns::Name&, bool, bool) const {
-        isc_throw(isc::NotImplemented, "Update attempt on in fake data source");
+        isc_throw(isc::NotImplemented,
+                  "Update attempt on in fake data source");
     }
     std::pair<isc::datasrc::ZoneJournalReader::Result,
               isc::datasrc::ZoneJournalReaderPtr>
-    getJournalReader(const isc::dns::Name&, uint32_t,
-                                     uint32_t) const
-    {
+    getJournalReader(const isc::dns::Name&, uint32_t, uint32_t) const {
         isc_throw(isc::NotImplemented, "Journaling isn't supported for "
-                  "in memory data source");
+                  "fake data source");
     }
 private:
     const isc::datasrc::DataSourceClientContainerPtr real_client_ptr_;
@@ -1294,7 +1293,8 @@ public:
                   ConstRRsetPtr fake_rrset = ConstRRsetPtr()) :
         DataSourceClientContainer("memory",
                                   Element::fromJSON("{\"type\": \"memory\"}")),
-        client_(new FakeClient(real_client, throw_when, isc_exception, fake_rrset))
+        client_(new FakeClient(real_client, throw_when, isc_exception,
+                               fake_rrset))
     {}
 
     isc::datasrc::DataSourceClient& getInstance() {
index 7dd91bff8fff09f7604627ef6ed1d46071026ce8..f970deb28facee821613307573b848a618e745a1 100644 (file)
@@ -326,7 +326,8 @@ TEST_F(AuthCommandTest,
 
     // Now send the command to reload it
     result_ = execAuthServerCommand(server_, "loadzone",
-        Element::fromJSON("{\"origin\": \"example.org\"}"));
+                                    Element::fromJSON(
+                                        "{\"origin\": \"example.org\"}"));
     checkAnswer(0);
 
     // And now it should be present too.
@@ -345,7 +346,8 @@ TEST_F(AuthCommandTest,
 
     module_session.setLocalConfig(Element::fromJSON("{\"datasources\": []}"));
     result_ = execAuthServerCommand(server_, "loadzone",
-        Element::fromJSON("{\"origin\": \"example.org\"}"));
+                                    Element::fromJSON(
+                                        "{\"origin\": \"example.org\"}"));
     checkAnswer(1);
 
     // The previous zone is not hurt in any way
index 92b3cb116fe1c6f1ed543c423b88d8653926241a..cbbc6db4c119c8ba73f6b9f0f95045b637a9600c 100644 (file)
@@ -178,7 +178,6 @@ applyConfig(isc::datasrc::InMemoryClient& client,
         return;
     }
 
-
     BOOST_FOREACH(ConstElementPtr zone_config, zones_config->listValue()) {
         ConstElementPtr origin = zone_config->get("origin");
         const std::string origin_txt = origin ? origin->stringValue() : "";