]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2688] Fixed invalid error message
authorMarcin Siodelski <marcin@isc.org>
Thu, 12 Jan 2023 21:07:35 +0000 (22:07 +0100)
committerAndrei Pavel <andrei@isc.org>
Thu, 13 Jul 2023 10:27:55 +0000 (13:27 +0300)
src/lib/database/dbaccess_parser.cc

index e60fd91d5af7a3d407e4febd8c3f130ca7e21ad6..2048b3b8ed257167e739d920a51569a5072432b6 100644 (file)
@@ -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() << ")");
     }