Fix error message.

This commit is contained in:
Michael Friedrich 2013-09-27 23:13:25 +02:00
parent 9c6b79e4f2
commit be5078c9aa
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ void ExternalCommandProcessor::ProcessHostCheckResult(double time, const std::ve
Host::Ptr host = Host::GetByName(arguments[0]);
if (!host)
BOOST_THROW_EXCEPTION(std::invalid_argument("Cannot passive host check result for non-existent host '" + arguments[0] + "'"));
BOOST_THROW_EXCEPTION(std::invalid_argument("Cannot process passive host check result for non-existent host '" + arguments[0] + "'"));
Service::Ptr hc = host->GetCheckService();