]> granicus.if.org Git - icinga2/commitdiff
Fix error message.
authorMichael Friedrich <Michael.Friedrich@netways.de>
Fri, 27 Sep 2013 21:13:25 +0000 (23:13 +0200)
committerMichael Friedrich <Michael.Friedrich@netways.de>
Fri, 27 Sep 2013 21:13:25 +0000 (23:13 +0200)
lib/icinga/externalcommandprocessor.cpp

index 538d60a91e516415f655304f9691307b5e305e35..b44c6c41652b63ef0c9441f5ef6d51738e739584 100644 (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();