From: Razvan Becheriu Date: Tue, 9 Sep 2025 18:51:04 +0000 (+0300) Subject: [#3961] fixed more typos X-Git-Tag: Kea-3.1.2~58 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d57c49fb371fa191b8074f7278186bc3257efe2e;p=thirdparty%2Fkea.git [#3961] fixed more typos --- diff --git a/src/share/database/scripts/mysql/dhcpdb_create.mysql b/src/share/database/scripts/mysql/dhcpdb_create.mysql index 1e1497ddba..bd5124b9f3 100644 --- a/src/share/database/scripts/mysql/dhcpdb_create.mysql +++ b/src/share/database/scripts/mysql/dhcpdb_create.mysql @@ -3570,7 +3570,7 @@ CREATE TABLE IF NOT EXISTS dhcp4_client_class_server ( -- ----------------------------------------------------------------------- -- Extend the table holding DHCPv4 option definitions with a nullable --- column matching option defintions with client classes. +-- column matching option definitions with client classes. -- ----------------------------------------------------------------------- ALTER TABLE dhcp4_option_def ADD COLUMN class_id BIGINT UNSIGNED NULL DEFAULT NULL; @@ -4030,7 +4030,7 @@ CREATE TABLE IF NOT EXISTS dhcp6_client_class_server ( -- ----------------------------------------------------------------------- -- Extend the table holding DHCPv6 option definitions with a nullable --- column matching option defintions with client classes. +-- column matching option definitions with client classes. -- ----------------------------------------------------------------------- ALTER TABLE dhcp6_option_def ADD COLUMN class_id BIGINT UNSIGNED NULL DEFAULT NULL; diff --git a/src/share/database/scripts/mysql/upgrade_009.6_to_010.0.sh.in b/src/share/database/scripts/mysql/upgrade_009.6_to_010.0.sh.in index c2f5599d78..e0bb80754d 100755 --- a/src/share/database/scripts/mysql/upgrade_009.6_to_010.0.sh.in +++ b/src/share/database/scripts/mysql/upgrade_009.6_to_010.0.sh.in @@ -551,7 +551,7 @@ CREATE TABLE IF NOT EXISTS dhcp4_client_class_server ( -- ----------------------------------------------------------------------- -- Extend the table holding DHCPv4 option definitions with a nullable --- column matching option defintions with client classes. +-- column matching option definitions with client classes. -- ----------------------------------------------------------------------- ALTER TABLE dhcp4_option_def ADD COLUMN class_id BIGINT UNSIGNED NULL DEFAULT NULL; @@ -1011,7 +1011,7 @@ CREATE TABLE IF NOT EXISTS dhcp6_client_class_server ( -- ----------------------------------------------------------------------- -- Extend the table holding DHCPv6 option definitions with a nullable --- column matching option defintions with client classes. +-- column matching option definitions with client classes. -- ----------------------------------------------------------------------- ALTER TABLE dhcp6_option_def ADD COLUMN class_id BIGINT UNSIGNED NULL DEFAULT NULL; diff --git a/src/share/database/scripts/pgsql/dhcpdb_create.pgsql b/src/share/database/scripts/pgsql/dhcpdb_create.pgsql index 1a3a85c0fc..bf1e8775c4 100644 --- a/src/share/database/scripts/pgsql/dhcpdb_create.pgsql +++ b/src/share/database/scripts/pgsql/dhcpdb_create.pgsql @@ -3739,7 +3739,7 @@ UPDATE schema_version -- ----------------------------------------------------------------------- -- Extend the table holding DHCPv4 option definitions with a nullable --- column matching option defintions with client classes. +-- column matching option definitions with client classes. -- ----------------------------------------------------------------------- ALTER TABLE dhcp4_option_def ADD COLUMN class_id BIGINT NULL DEFAULT NULL; @@ -3753,7 +3753,7 @@ ALTER TABLE dhcp4_option_def -- ----------------------------------------------------------------------- -- Extend the table holding DHCPv6 option definitions with a nullable --- column matching option defintions with client classes. +-- column matching option definitions with client classes. -- ----------------------------------------------------------------------- ALTER TABLE dhcp6_option_def ADD COLUMN class_id BIGINT NULL DEFAULT NULL; diff --git a/src/share/database/scripts/pgsql/upgrade_007_to_008.sh.in b/src/share/database/scripts/pgsql/upgrade_007_to_008.sh.in index 3e12550b05..ac35d91ff3 100755 --- a/src/share/database/scripts/pgsql/upgrade_007_to_008.sh.in +++ b/src/share/database/scripts/pgsql/upgrade_007_to_008.sh.in @@ -44,7 +44,7 @@ START TRANSACTION; -- ----------------------------------------------------------------------- -- Extend the table holding DHCPv4 option definitions with a nullable --- column matching option defintions with client classes. +-- column matching option definitions with client classes. -- ----------------------------------------------------------------------- ALTER TABLE dhcp4_option_def ADD COLUMN class_id BIGINT NULL DEFAULT NULL; @@ -58,7 +58,7 @@ ALTER TABLE dhcp4_option_def -- ----------------------------------------------------------------------- -- Extend the table holding DHCPv6 option definitions with a nullable --- column matching option defintions with client classes. +-- column matching option definitions with client classes. -- ----------------------------------------------------------------------- ALTER TABLE dhcp6_option_def ADD COLUMN class_id BIGINT NULL DEFAULT NULL;