]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2819] Fixed misspellings
authorThomas Markwalder <tmark@isc.org>
Mon, 16 Dec 2024 13:09:30 +0000 (08:09 -0500)
committerThomas Markwalder <tmark@isc.org>
Mon, 16 Dec 2024 15:15:09 +0000 (10:15 -0500)
src/lib/dhcpsrv/dhcpsrv_messages.mes
src/lib/dhcpsrv/ncr_generator.h
src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc

index 6d6185a3e9947e1de605839c2b4aedaa80836a00..9c0e5efb19afb8158da892dbceaea2b2ba5746a3 100644 (file)
@@ -968,14 +968,14 @@ message) that is unknown to the software. This is a configuration error.
 Logged at debug log level 55.
 A debug message issued when the DDNS TTL value calculated using the
 ddns-ttl-percent if specified or (0.33 if not) is too small.  Kea will
-ignore the value and use the minimum (ddns-ttl-min if specifed or 600
+ignore the value and use the minimum (ddns-ttl-min if specified or 600
 seconds if not). The message details include the percentage, the lease
 life time, the calculated TTL, and the value actually used.
 
 % DHCPSRV_DDNS_TTL_TOO_LARGE %1 of lease life time %2 is %3, using maximum of %4 instead.
 Logged at debug log level 55.
 A debug message issued when the DDNS TTL value calculated using the
-ddns-ttl-percent if specfieed or (0.33 if not) is larger than the
+ddns-ttl-percent if specfied or (0.33 if not) is larger than the
 the specified value of ddns-ttl-max. Kea will ignore the value and
 use the specified maximum instead. The message details include
 the percentage, the lease life time, the calculated TTL, and the value
index e81b37b635f9999968e17f8391a12b8891d9b5fd..7521c2391753d35855db086fec69c79534098321 100644 (file)
@@ -60,7 +60,7 @@ void queueNCR(const dhcp_ddns::NameChangeType& chg_type, const Lease6Ptr& lease)
 /// @param lease_life_time valid life time of the lease
 /// @param ddns_ttl_percent optional percentage to use in calculation
 /// @param ddns_ttl optional percentage to use in calculation
-/// @param ddns_ttl_min optional minium TTL to allow
+/// @param ddns_ttl_min optional minimum TTL to allow
 /// @param ddns_ttl_max optional maximum TTL to allow
 ///
 /// @return the calculated TTL.
index a9d76564c0c1d6ca44e1657df6ba11761fb15cc6..9ea17057c315a302bb4a0d054f6fac418a74c51c 100644 (file)
@@ -73,7 +73,7 @@ public:
         CfgMgr::instance().clear();
     }
 
-    // Verifies valid permuatations of ddns-ttl-percent, ddns-ttl,
+    // Verifies valid permutations of ddns-ttl-percent, ddns-ttl,
     // ddns-ttl-min, and ddns-ttl-max values for SubnetX.
     template<typename ParserType, typename NetworkPtrType>
        void validDdnsTtlParmatersSubnet(int family) {
@@ -167,7 +167,7 @@ public:
            }
        }
        
-       // Verifies invalid permuatations of ddns-ttl-percent, ddns-ttl,
+       // Verifies invalid permutations of ddns-ttl-percent, ddns-ttl,
        // ddns-ttl-min, and ddns-ttl-max values for SubnetX.
     template<typename ParserType>
        void invalidDdnsTtlParmatersSubnet(int family) {
@@ -4270,25 +4270,25 @@ TEST_F(DhcpParserTest, deprecatedClientClassPool6) {
                      " 'client-classes'. Use only the latter.");
 }
 
-// Verifies valid permuatations of ddns-ttl-percent, ddns-ttl,
+// Verifies valid permutations of ddns-ttl-percent, ddns-ttl,
 // ddns-ttl-min, and ddns-ttl-max values for Subnet4.
 TEST_F(DhcpParserTest, validDdnsTtlParmatersSubnet4) {
     validDdnsTtlParmatersSubnet<Subnet4ConfigParser, Subnet4Ptr>(AF_INET);
 }
 
-// Verifies invalid permuatations of ddns-ttl-percent, ddns-ttl,
+// Verifies invalid permutations of ddns-ttl-percent, ddns-ttl,
 // ddns-ttl-min, and ddns-ttl-max values for Subnet4.
 TEST_F(DhcpParserTest, invalidDdnsTtlParmatersSubnet4) {
     invalidDdnsTtlParmatersSubnet<Subnet4ConfigParser>(AF_INET);
 }
 
-// Verifies valid permuatations of ddns-ttl-percent, ddns-ttl,
+// Verifies valid permutations of ddns-ttl-percent, ddns-ttl,
 // ddns-ttl-min, and ddns-ttl-max values for Subnet6.
 TEST_F(DhcpParserTest, validDdnsTtlParmatersSubnet6) {
     validDdnsTtlParmatersSubnet<Subnet6ConfigParser, Subnet6Ptr>(AF_INET6);
 }
 
-// Verifies invalid permuatations of ddns-ttl-percent, ddns-ttl,
+// Verifies invalid permutations of ddns-ttl-percent, ddns-ttl,
 // ddns-ttl-min, and ddns-ttl-max values for Subnet6.
 TEST_F(DhcpParserTest, invalidDdnsTtlParmatersSubnet6) {
     invalidDdnsTtlParmatersSubnet<Subnet6ConfigParser>(AF_INET6);