From: Marcin Siodelski Date: Thu, 12 Jan 2023 21:07:35 +0000 (+0100) Subject: [#2688] Fixed invalid error message X-Git-Tag: Kea-2.2.1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01af16f8450fb1cc01551b0a9e700aa995c8d60d;p=thirdparty%2Fkea.git [#2688] Fixed invalid error message --- diff --git a/src/lib/database/dbaccess_parser.cc b/src/lib/database/dbaccess_parser.cc index e60fd91d5a..2048b3b8ed 100644 --- a/src/lib/database/dbaccess_parser.cc +++ b/src/lib/database/dbaccess_parser.cc @@ -211,7 +211,7 @@ DbAccessParser::parse(std::string& access_string, } if (tcp_user_timeout > 0 && (dbtype != "postgresql")) { ConstElementPtr value = database_config->get("tcp-user-timeout"); - isc_throw(DbConfigError, "tcp-user-timeout value is only supported by the mysql backend" + isc_throw(DbConfigError, "tcp-user-timeout value is only supported by the postgresql backend" << " (" << value->getPosition() << ")"); }