From: Wlodek Wencel Date: Fri, 21 Apr 2023 08:31:46 +0000 (+0200) Subject: [2840] typos and docs update before release X-Git-Tag: Kea-2.3.7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8b1e497332e6e9208ce5f19a4e84f9193715bd0;p=thirdparty%2Fkea.git [2840] typos and docs update before release --- diff --git a/configure.ac b/configure.ac index b1d665f7d8..797d7ddaa8 100644 --- a/configure.ac +++ b/configure.ac @@ -850,16 +850,6 @@ if test "${pgsql_ssl}" = "yes"; then AC_DEFINE([HAVE_PGSQL_SSL], [1], [PostgreSQL was built with OpenSSL support]) fi -cql_config="no" -AC_ARG_WITH([cql], - [AS_HELP_STRING([--with-cql[[=PATH]]], - [path to pkg-config or the Cassandra CQL 'cql_config' script (deprecated)])], - [cql_config="$withval"]) - -if test "${cql_config}" != "no" ; then - AC_MSG_ERROR([$CQL_CONFIG Cassandra is no longer supported]) -fi - # Check for log4cplus DISTCHECK_LOG4CPLUS_CONFIGURE_FLAG= log4cplus_path="yes" diff --git a/platforms.rst b/platforms.rst index 6958dd810f..926e3c394a 100644 --- a/platforms.rst +++ b/platforms.rst @@ -20,7 +20,7 @@ Regularly Tested Platforms Kea is officially supported on Alpine, CentOS, Fedora, Ubuntu, Debian, and FreeBSD systems. Kea-|release| builds have been tested on: -* Alpine — 3.14, 3.15, 3.16 +* Alpine — 3.14, 3.15, 3.16, 3.17 * CentOS — 7 * Debian — 10, 11 * Fedora — 36 diff --git a/src/lib/cc/command_interpreter.cc b/src/lib/cc/command_interpreter.cc index 1bdd329d19..be7048e7db 100644 --- a/src/lib/cc/command_interpreter.cc +++ b/src/lib/cc/command_interpreter.cc @@ -220,7 +220,7 @@ parseCommandWithArgs(ConstElementPtr& arg, ConstElementPtr command) { // Arguments must be a map. if (arg->getType() != Element::map) { isc_throw(CtrlChannelError, - "invalid command '" << command_name << "': expected " + "invalid command '" << command_name << "': expected '" << CONTROL_ARGUMENTS << "' to be a map, got " << Element::typeToName(arg->getType()) << " instead"); } diff --git a/src/share/database/scripts/mysql/dhcpdb_create.mysql b/src/share/database/scripts/mysql/dhcpdb_create.mysql index d6784e13ae..b0b60b6651 100644 --- a/src/share/database/scripts/mysql/dhcpdb_create.mysql +++ b/src/share/database/scripts/mysql/dhcpdb_create.mysql @@ -5091,7 +5091,7 @@ UPDATE schema_version -- This line starts the schema upgrade to version 16. --- Add relay and remote id colums to DHCPv4 leases. +-- Add relay and remote id columns to DHCPv4 leases. -- -- Note: these columns are only used for indexes, in particular they are -- not exported by lease4 dump as values are also in the user context diff --git a/src/share/database/scripts/mysql/upgrade_015_to_016.sh.in b/src/share/database/scripts/mysql/upgrade_015_to_016.sh.in index 05e0396162..fe89202c76 100644 --- a/src/share/database/scripts/mysql/upgrade_015_to_016.sh.in +++ b/src/share/database/scripts/mysql/upgrade_015_to_016.sh.in @@ -54,7 +54,7 @@ fi mysql "$@" <