2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-03 07:25:18 +00:00

[3882a] Added a comma before library

This commit is contained in:
Francis Dupont
2015-06-20 15:13:23 +02:00
parent be77596d0f
commit 7edc41b888
2 changed files with 2 additions and 2 deletions

View File

@@ -1270,7 +1270,7 @@ MySqlLeaseMgr::getDBVersion() {
std::stringstream tmp;
tmp << "MySQL backend " << CURRENT_VERSION_VERSION;
tmp << "." << CURRENT_VERSION_MINOR;
tmp << " library " << mysql_get_client_info();
tmp << ", library " << mysql_get_client_info();
return (tmp.str());
}

View File

@@ -970,7 +970,7 @@ PgSqlLeaseMgr::getDBVersion() {
std::stringstream tmp;
tmp << "PostgreSQL backend " << PG_CURRENT_VERSION;
tmp << "." << PG_CURRENT_MINOR;
tmp << " library " << PQlibVersion();
tmp << ", library " << PQlibVersion();
return (tmp.str());
}