Fix incorrect filename in ApiListener::SyncZoneDir

refs #9083
This commit is contained in:
Gunnar Beutner 2015-07-21 11:45:17 +02:00
parent ccd63b9d15
commit f1a95e3340
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}