]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4445] Fixed typo
authorFrancis Dupont <fdupont@isc.org>
Sat, 2 May 2026 12:08:03 +0000 (14:08 +0200)
committerFrancis Dupont <fdupont@isc.org>
Sat, 2 May 2026 12:08:03 +0000 (14:08 +0200)
doc/sphinx/grammar/grammar-dhcp4-parser.rst
doc/sphinx/grammar/grammar-dhcp6-parser.rst
src/bin/dhcp4/dhcp4_parser.cc
src/bin/dhcp4/dhcp4_parser.h
src/bin/dhcp4/dhcp4_parser.yy
src/bin/dhcp6/dhcp6_parser.cc
src/bin/dhcp6/dhcp6_parser.h
src/bin/dhcp6/dhcp6_parser.yy

index 12428e6a761eb5a884003034753417c296f93041..f4e5b68d2d781894b15be710a5e8ccdba060c55e 100644 (file)
@@ -232,7 +232,7 @@ This grammar is generated from ``dhcp4_parser.yy``. See :ref:`dhcp4` for more de
 
      ddns_ttl_min ::= "ddns-ttl-min" ":" INTEGER
 
-     ddns_ttl_max ::= "ddns-ttl-mix" ":" INTEGER
+     ddns_ttl_max ::= "ddns-ttl-max" ":" INTEGER
 
      hostname_char_set ::= "hostname-char-set" ":" STRING
 
index cb77b1999039b65071ca3df143ff245ed8f70d38..2412cca61aeff6663e4e2f678c28db3542768a41 100644 (file)
@@ -231,7 +231,7 @@ This grammar is generated from ``dhcp6_parser.yy``. See :ref:`dhcp6` for more de
 
      ddns_ttl_min ::= "ddns-ttl-min" ":" INTEGER
 
-     ddns_ttl_max ::= "ddns-ttl-mix" ":" INTEGER
+     ddns_ttl_max ::= "ddns-ttl-max" ":" INTEGER
 
      hostname_char_set ::= "hostname-char-set" ":" STRING
 
index 0236f62a9a7a141cd7ebe2219d6b2362b5c3c8aa..77b11985b310fcc3fdd1bdba9fe6f5619a2abda1 100644 (file)
@@ -1576,7 +1576,7 @@ namespace isc { namespace dhcp {
 #line 1577 "dhcp4_parser.cc"
     break;
 
-  case 188: // ddns_ttl_max: "ddns-ttl-mix" ":" "integer"
+  case 188: // ddns_ttl_max: "ddns-ttl-max" ":" "integer"
 #line 836 "dhcp4_parser.yy"
                                          {
     ctx.unique("ddns-ttl-max", ctx.loc2pos(yystack_[2].location));
@@ -6708,7 +6708,7 @@ namespace isc { namespace dhcp {
   "\"ddns-replace-client-name\"", "\"ddns-generated-prefix\"",
   "\"ddns-qualifying-suffix\"", "\"ddns-update-on-renew\"",
   "\"ddns-use-conflict-resolution\"", "\"ddns-ttl-percent\"",
-  "\"ddns-ttl\"", "\"ddns-ttl-min\"", "\"ddns-ttl-mix\"",
+  "\"ddns-ttl\"", "\"ddns-ttl-min\"", "\"ddns-ttl-max\"",
   "\"store-extended-info\"", "\"subnet4\"", "\"4o6-interface\"",
   "\"4o6-interface-id\"", "\"4o6-subnet\"", "\"option-def\"",
   "\"option-data\"", "\"name\"", "\"data\"", "\"code\"", "\"space\"",
index aaf488d9edcba74c29db7a3f2d587a278d34129f..96e6c9c8187329d599e36af4c06fbda4666d8955 100644 (file)
@@ -594,7 +594,7 @@ namespace isc { namespace dhcp {
     TOKEN_DDNS_TTL_PERCENT = 348,  // "ddns-ttl-percent"
     TOKEN_DDNS_TTL = 349,          // "ddns-ttl"
     TOKEN_DDNS_TTL_MIN = 350,      // "ddns-ttl-min"
-    TOKEN_DDNS_TTL_MAX = 351,      // "ddns-ttl-mix"
+    TOKEN_DDNS_TTL_MAX = 351,      // "ddns-ttl-max"
     TOKEN_STORE_EXTENDED_INFO = 352, // "store-extended-info"
     TOKEN_SUBNET4 = 353,           // "subnet4"
     TOKEN_SUBNET_4O6_INTERFACE = 354, // "4o6-interface"
@@ -853,7 +853,7 @@ namespace isc { namespace dhcp {
         S_DDNS_TTL_PERCENT = 93,                 // "ddns-ttl-percent"
         S_DDNS_TTL = 94,                         // "ddns-ttl"
         S_DDNS_TTL_MIN = 95,                     // "ddns-ttl-min"
-        S_DDNS_TTL_MAX = 96,                     // "ddns-ttl-mix"
+        S_DDNS_TTL_MAX = 96,                     // "ddns-ttl-max"
         S_STORE_EXTENDED_INFO = 97,              // "store-extended-info"
         S_SUBNET4 = 98,                          // "subnet4"
         S_SUBNET_4O6_INTERFACE = 99,             // "4o6-interface"
index 90e592c385450b1527fc10287110f12a9e458689..e459ae1134bf77c7b6f2195f1731dd0b14d026f7 100644 (file)
@@ -146,7 +146,7 @@ using namespace std;
   DDNS_TTL_PERCENT "ddns-ttl-percent"
   DDNS_TTL "ddns-ttl"
   DDNS_TTL_MIN "ddns-ttl-min"
-  DDNS_TTL_MAX "ddns-ttl-mix"
+  DDNS_TTL_MAX "ddns-ttl-max"
   STORE_EXTENDED_INFO "store-extended-info"
   SUBNET4 "subnet4"
   SUBNET_4O6_INTERFACE "4o6-interface"
index 3751ebaf3a086dc77c73083ea29a423a3e46824e..99d0bb6b3b5fd32219ae9d0686e5c3afb45cf03f 100644 (file)
@@ -1543,7 +1543,7 @@ namespace isc { namespace dhcp {
 #line 1544 "dhcp6_parser.cc"
     break;
 
-  case 188: // ddns_ttl_max: "ddns-ttl-mix" ":" "integer"
+  case 188: // ddns_ttl_max: "ddns-ttl-max" ":" "integer"
 #line 828 "dhcp6_parser.yy"
                                          {
     ctx.unique("ddns-ttl-max", ctx.loc2pos(yystack_[2].location));
@@ -6880,7 +6880,7 @@ namespace isc { namespace dhcp {
   "\"ddns-generated-prefix\"", "\"ddns-qualifying-suffix\"",
   "\"ddns-update-on-renew\"", "\"ddns-use-conflict-resolution\"",
   "\"ddns-ttl-percent\"", "\"ddns-ttl\"", "\"ddns-ttl-min\"",
-  "\"ddns-ttl-mix\"", "\"store-extended-info\"", "\"subnet6\"",
+  "\"ddns-ttl-max\"", "\"store-extended-info\"", "\"subnet6\"",
   "\"option-def\"", "\"option-data\"", "\"name\"", "\"data\"", "\"code\"",
   "\"space\"", "\"csv-format\"", "\"always-send\"", "\"never-send\"",
   "\"record-types\"", "\"encapsulate\"", "\"array\"",
index f3db3b9ae2d5d4cc1277926ba3adc68332bf05cd..eba4dfbeab3506c26633522284110d5e55b00e3c 100644 (file)
@@ -580,7 +580,7 @@ namespace isc { namespace dhcp {
     TOKEN_DDNS_TTL_PERCENT = 335,  // "ddns-ttl-percent"
     TOKEN_DDNS_TTL = 336,          // "ddns-ttl"
     TOKEN_DDNS_TTL_MIN = 337,      // "ddns-ttl-min"
-    TOKEN_DDNS_TTL_MAX = 338,      // "ddns-ttl-mix"
+    TOKEN_DDNS_TTL_MAX = 338,      // "ddns-ttl-max"
     TOKEN_STORE_EXTENDED_INFO = 339, // "store-extended-info"
     TOKEN_SUBNET6 = 340,           // "subnet6"
     TOKEN_OPTION_DEF = 341,        // "option-def"
@@ -844,7 +844,7 @@ namespace isc { namespace dhcp {
         S_DDNS_TTL_PERCENT = 80,                 // "ddns-ttl-percent"
         S_DDNS_TTL = 81,                         // "ddns-ttl"
         S_DDNS_TTL_MIN = 82,                     // "ddns-ttl-min"
-        S_DDNS_TTL_MAX = 83,                     // "ddns-ttl-mix"
+        S_DDNS_TTL_MAX = 83,                     // "ddns-ttl-max"
         S_STORE_EXTENDED_INFO = 84,              // "store-extended-info"
         S_SUBNET6 = 85,                          // "subnet6"
         S_OPTION_DEF = 86,                       // "option-def"
index 00710d736dee9bf5ba9eb78b460ba13647d60a1a..6cf595d8426daf9b74ba7ddc762c28838f094123 100644 (file)
@@ -131,7 +131,7 @@ using namespace std;
   DDNS_TTL_PERCENT "ddns-ttl-percent"
   DDNS_TTL "ddns-ttl"
   DDNS_TTL_MIN "ddns-ttl-min"
-  DDNS_TTL_MAX "ddns-ttl-mix"
+  DDNS_TTL_MAX "ddns-ttl-max"
   STORE_EXTENDED_INFO "store-extended-info"
   SUBNET6 "subnet6"
   OPTION_DEF "option-def"