]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] fix spelling
authorJeremy C. Reed <jreed@ISC.org>
Fri, 31 Aug 2012 18:48:14 +0000 (13:48 -0500)
committerJeremy C. Reed <jreed@ISC.org>
Fri, 31 Aug 2012 18:48:14 +0000 (13:48 -0500)
Fix a misspelling in a log output.
Also fix same misspelling in some comments and unittest output.

src/bin/auth/command.cc
src/lib/datasrc/tests/database_unittest.cc
src/lib/datasrc/tests/memory_datasrc_unittest.cc

index 0658c17b0e9802347916f11dc11166376bcb6d9e..43b242269ed3f8bd19bf61fdad165b89391711f4 100644 (file)
@@ -210,7 +210,7 @@ public:
             case ConfigurableClientList::ZONE_NOT_CACHED:
                 isc_throw(AuthCommandError, "Zone " << origin << "/" <<
                           zone_class << " is not served from memory, but "
-                          "direcly from the data source. It is not possible "
+                          "directly from the data source. It is not possible "
                           "to reload it into memory. Configure it to be cached "
                           "first.");
             case ConfigurableClientList::CACHE_DISABLED:
index 56ee5dd171e6e8ce6d08bd6f8b747e999443d4ef..dda4de2b29414d0edca690c3a1cc5b4d2304ec7b 100644 (file)
@@ -2153,7 +2153,7 @@ TYPED_TEST(DatabaseClientTest, findDelegation) {
                this->rrttl_, ZoneFinder::DELEGATION, this->expected_rdatas_,
                this->expected_sig_rdatas_);
 
-    // And when we ask direcly for the NS, we should still get delegation
+    // And when we ask directly for the NS, we should still get delegation
     doFindTest(*finder, isc::dns::Name("delegation.example.org."),
                isc::dns::RRType::NS(), isc::dns::RRType::NS(),
                this->rrttl_, ZoneFinder::DELEGATION, this->expected_rdatas_,
@@ -2184,7 +2184,7 @@ TYPED_TEST(DatabaseClientTest, findDelegation) {
                this->expected_sig_rdatas_, ZoneFinder::RESULT_DEFAULT,
                isc::dns::Name("dname.example.org."));
 
-    // Asking direcly for DNAME should give SUCCESS
+    // Asking directly for DNAME should give SUCCESS
     doFindTest(*finder, isc::dns::Name("dname.example.org."),
                isc::dns::RRType::DNAME(), isc::dns::RRType::DNAME(),
                this->rrttl_, ZoneFinder::SUCCESS, this->expected_rdatas_,
index 5abe2702a2f6821039753fbdadd56e9508b1b2d3..fcdca16a8603736f6576a8f0f3720298d5092305 100644 (file)
@@ -1511,7 +1511,7 @@ InMemoryZoneFinderTest::anyWildcardCheck(
 
     // First try directly the name (normal match)
     {
-        SCOPED_TRACE("Asking direcly for *");
+        SCOPED_TRACE("Asking directly for *");
         expected_sets.push_back(rr_wild_);
         findAllTest(Name("*.wild.example.org"), ZoneFinder::SUCCESS,
                     expected_sets);