1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-07 20:25:08 +02:00

Fix incorrect filename in ApiListener::SyncZoneDir

refs 
This commit is contained in:
Gunnar Beutner 2015-07-21 11:45:17 +02:00
parent ccd63b9d15
commit f1a95e3340

@ -128,7 +128,7 @@ void ApiListener::SyncZoneDir(const Zone::Ptr& zone) const
ObjectLock olock(newConfigPart);
BOOST_FOREACH(const Dictionary::Pair& kv, newConfigPart) {
newConfig->Set(zf.Tag + "/" + kv.first, kv.second);
newConfig->Set("/" + zf.Tag + kv.first, kv.second);
}
}