Add missing quotes when printing server names

Some of the log messages didn't have the quotes.
This commit is contained in:
Esa Korhonen
2018-11-22 10:43:38 +02:00
parent 75fb728ee7
commit 0a5a3309e0
4 changed files with 58 additions and 75 deletions

View File

@ -939,7 +939,7 @@ string monitored_servers_to_string(const ServerArray& servers)
for (size_t i = 0; i < array_size; i++)
{
rval += separator;
rval += servers[i]->name();
rval += string("'") + servers[i]->name() + "'";
separator = ", ";
}
}