]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spelling: database
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 16:07:00 +0000 (12:07 -0400)
committerJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 16:07:00 +0000 (12:07 -0400)
src/lib/dhcpsrv/host_data_source_factory.cc
src/lib/dhcpsrv/tests/generic_host_data_source_unittest.cc

index 380d6c8a3b3392cf904213209e6e5dd6b869b1b6..d19d63dc14d4258a7ac7d00b0482c07c3000d821 100644 (file)
@@ -47,7 +47,7 @@ HostDataSourceFactory::create(const std::string& dbaccess) {
     DatabaseConnection::ParameterMap parameters =
             DatabaseConnection::parse(dbaccess);
 
-    // Get the databaase type and open the corresponding database
+    // Get the database type and open the corresponding database
     DatabaseConnection::ParameterMap::iterator it = parameters.find("type");
     if (it == parameters.end()) {
         isc_throw(InvalidParameter, "Host database configuration does not "
index ce1861d0b7f9704d736300510ced69247f8b9ed2..a7fb66200ba6519719721f2ca7cfe3cf5da9cca8 100644 (file)
@@ -513,7 +513,7 @@ GenericHostDataSourceTest::testReadOnlyDatabase(const char* valid_db_type) {
     ASSERT_TRUE(hdsptr_);
 
     // The database is initially opened in "read-write" mode. We can
-    // insert some data to the databse.
+    // insert some data to the database.
     HostPtr host = initializeHost6("2001:db8::1", Host::IDENT_DUID, false);
     ASSERT_TRUE(host);
     ASSERT_NO_THROW(hdsptr_->add(host));