mirror of https://github.com/Icinga/icinga2.git
parent
9de7da4d2a
commit
b0f7a29212
|
@ -125,7 +125,7 @@ void ApiListener::SyncZoneDir(const Zone::Ptr& zone) const
|
||||||
|
|
||||||
if (!Utility::MkDir(oldDir, 0700)) {
|
if (!Utility::MkDir(oldDir, 0700)) {
|
||||||
Log(LogCritical, "ApiListener")
|
Log(LogCritical, "ApiListener")
|
||||||
<< "mkdir() for path '" << oldDir << "'failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
<< "mkdir() for path '" << oldDir << "' failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
||||||
|
|
||||||
BOOST_THROW_EXCEPTION(posix_error()
|
BOOST_THROW_EXCEPTION(posix_error()
|
||||||
<< boost::errinfo_api_function("mkdir")
|
<< boost::errinfo_api_function("mkdir")
|
||||||
|
@ -237,7 +237,7 @@ Value ApiListener::ConfigUpdateHandler(const MessageOrigin& origin, const Dictio
|
||||||
|
|
||||||
if (!Utility::MkDir(oldDir, 0700)) {
|
if (!Utility::MkDir(oldDir, 0700)) {
|
||||||
Log(LogCritical, "ApiListener")
|
Log(LogCritical, "ApiListener")
|
||||||
<< "mkdir() for path '" << oldDir << "'failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
<< "mkdir() for path '" << oldDir << "' failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
|
||||||
|
|
||||||
BOOST_THROW_EXCEPTION(posix_error()
|
BOOST_THROW_EXCEPTION(posix_error()
|
||||||
<< boost::errinfo_api_function("mkdir")
|
<< boost::errinfo_api_function("mkdir")
|
||||||
|
|
Loading…
Reference in New Issue