From b0f7a2921295388d9cb6654af3f2bd8c72d78a07 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 10 Feb 2015 08:57:54 +0100 Subject: [PATCH] Add missing spaces in some error messages refs #7995 --- lib/remote/apilistener-sync.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/remote/apilistener-sync.cpp b/lib/remote/apilistener-sync.cpp index 841835553..6ae194a45 100644 --- a/lib/remote/apilistener-sync.cpp +++ b/lib/remote/apilistener-sync.cpp @@ -125,7 +125,7 @@ void ApiListener::SyncZoneDir(const Zone::Ptr& zone) const if (!Utility::MkDir(oldDir, 0700)) { 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::errinfo_api_function("mkdir") @@ -237,7 +237,7 @@ Value ApiListener::ConfigUpdateHandler(const MessageOrigin& origin, const Dictio if (!Utility::MkDir(oldDir, 0700)) { 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::errinfo_api_function("mkdir")