Fix filter serialization

Filters were serialized with commas as separators instead of pipes.
This commit is contained in:
Markus Mäkelä 2019-03-07 16:02:49 +02:00
parent 48d2f3bd84
commit 267ec9cccc
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -1850,7 +1850,7 @@ bool Service::dump_config(const char* filename) const
for (const auto& f : m_filters)
{
dprintf(file, "%s%s", sep, f->name.c_str());
sep = ",";
sep = "|";
}
dprintf(file, "\n");