From: Josh Soref Date: Sun, 23 Jul 2017 15:58:09 +0000 (-0400) Subject: spelling: configuration X-Git-Tag: trac5124a_base~35^2~185 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cb1132a0921383a5ff13868ccb29654a30e580e;p=thirdparty%2Fkea.git spelling: configuration --- diff --git a/compatcheck/README b/compatcheck/README index 8381e60ae8..3c07c37869 100644 --- a/compatcheck/README +++ b/compatcheck/README @@ -1,5 +1,5 @@ This directory is a collection of compatibility checker programs. They will be run before any other installation attempts on 'make install' to see if the installation causes any substantial compatibility problems -with existing configuratons. If any checker program finds an issue, +with existing configurations. If any checker program finds an issue, 'make install' will stop at that point. diff --git a/src/bin/agent/ca_cfg_mgr.h b/src/bin/agent/ca_cfg_mgr.h index 4e7c5afe3d..f69b2fde48 100644 --- a/src/bin/agent/ca_cfg_mgr.h +++ b/src/bin/agent/ca_cfg_mgr.h @@ -186,7 +186,7 @@ protected: /// /// @param config Pointer to a configuration specified for the agent. /// @param check_only Boolean flag indicating if this method should - /// only verify correctness of the provided conifiguration. + /// only verify correctness of the provided configuration. /// @return Pointer to a result of configuration parsing. virtual isc::data::ConstElementPtr parse(isc::data::ConstElementPtr config, bool check_only); diff --git a/src/bin/agent/tests/ca_controller_unittests.cc b/src/bin/agent/tests/ca_controller_unittests.cc index 8090f89c17..ef5e590ebc 100644 --- a/src/bin/agent/tests/ca_controller_unittests.cc +++ b/src/bin/agent/tests/ca_controller_unittests.cc @@ -270,7 +270,7 @@ TEST_F(CtrlAgentControllerTest, sigtermShutdown) { // Tests that the sockets settings are updated upon successful reconfiguration. TEST_F(CtrlAgentControllerTest, successfulConfigUpdate) { - // This configuration should be used to override the initial conifguration. + // This configuration should be used to override the initial configuration. const char* second_config = "{" " \"http-host\": \"127.0.0.1\"," @@ -378,7 +378,7 @@ TEST_F(CtrlAgentControllerTest, unsuccessfulConfigUpdate) { // listener configuration remains the same. The server should continue using the // listener instance it has been using prior to the reconfiguration. TEST_F(CtrlAgentControllerTest, noListenerChange) { - // This configuration should be used to override the initial conifguration. + // This configuration should be used to override the initial configuration. const char* second_config = "{" " \"http-host\": \"127.0.0.1\"," diff --git a/src/bin/keactrl/kea.conf.pre b/src/bin/keactrl/kea.conf.pre index cebffb18fb..d1c43085b9 100644 --- a/src/bin/keactrl/kea.conf.pre +++ b/src/bin/keactrl/kea.conf.pre @@ -734,7 +734,7 @@ "reverse-ddns" : {} }, -// This is a basic configuraton for the Kea Control Agent. +// This is a basic configuration for the Kea Control Agent. // RESTful interface to be available at http://127.0.0.1:8080/ "Control-agent": { "http-host": "127.0.0.1", diff --git a/src/lib/dhcpsrv/cfg_host_operations.h b/src/lib/dhcpsrv/cfg_host_operations.h index 10ea321c19..ae9f65831e 100644 --- a/src/lib/dhcpsrv/cfg_host_operations.h +++ b/src/lib/dhcpsrv/cfg_host_operations.h @@ -48,7 +48,7 @@ public: /// @brief Constructor. /// - /// The default confguration: + /// The default configuration: /// - no identifiers selected for host reservations searches. CfgHostOperations(); diff --git a/src/lib/dhcpsrv/daemon.h b/src/lib/dhcpsrv/daemon.h index 6ef61ddb01..9ffe467bcf 100644 --- a/src/lib/dhcpsrv/daemon.h +++ b/src/lib/dhcpsrv/daemon.h @@ -149,7 +149,7 @@ public: /// @param config_file name of the file to write the configuration to /// @param cfg configuration to write (optional) /// @return number of files written - /// @throw Unexpected if CfgMgr can't retrieve configuation or file cannot + /// @throw Unexpected if CfgMgr can't retrieve configuration or file cannot /// be written virtual size_t writeConfigFile(const std::string& config_file, diff --git a/src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc b/src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc index 555d87f5d7..6f1438a044 100644 --- a/src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc +++ b/src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc @@ -1242,7 +1242,7 @@ TEST_F(ParseConfigTest, optionDataMinimal) { // This test verifies that the option data configuration with a minimal // set of parameters works as expected when option definition is -// created in the configruation file. +// created in the configuration file. TEST_F(ParseConfigTest, optionDataMinimalWithOptionDef) { // Configuration string. std::string config = diff --git a/src/lib/dhcpsrv/tests/host_mgr_unittest.cc b/src/lib/dhcpsrv/tests/host_mgr_unittest.cc index 5ddeb48d90..1f7cc680f5 100644 --- a/src/lib/dhcpsrv/tests/host_mgr_unittest.cc +++ b/src/lib/dhcpsrv/tests/host_mgr_unittest.cc @@ -444,7 +444,7 @@ MySQLHostMgrTest::TearDown() { } // This test verifies that reservations for a particular client can -// be retrieved from the confguration file and a database simultaneously. +// be retrieved from the configuration file and a database simultaneously. TEST_F(MySQLHostMgrTest, getAll) { testGetAll(*getCfgHosts(), HostMgr::instance()); } @@ -521,7 +521,7 @@ PostgreSQLHostMgrTest::TearDown() { } // This test verifies that reservations for a particular client can -// be retrieved from the confguration file and a database simultaneously. +// be retrieved from the configuration file and a database simultaneously. TEST_F(PostgreSQLHostMgrTest, getAll) { testGetAll(*getCfgHosts(), HostMgr::instance()); }