From: Gunnar Beutner Date: Thu, 22 Nov 2012 12:16:38 +0000 (+0100) Subject: Fixed indentation. X-Git-Tag: v0.0.2~720 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1bf945f36756355a723b9b37536f6f0ff5d3fc2a;p=icinga2 Fixed indentation. --- diff --git a/components/compatido/compatidocomponent.cpp b/components/compatido/compatidocomponent.cpp index 4c2152f81..c680ba1b8 100644 --- a/components/compatido/compatidocomponent.cpp +++ b/components/compatido/compatidocomponent.cpp @@ -437,16 +437,16 @@ void CompatIdoComponent::DumpHostStatus(const Host::Ptr& host) log << "Dumping Host Status: " << host->GetName(); Logger::Write(LogDebug, "compatido", log.str()); - int state; - if (!host->IsReachable()) + int state; + if (!host->IsReachable()) state = 2; /* unreachable */ - else if (!host->IsUp()) + else if (!host->IsUp()) state = 1; /* down */ - else + else state = 0; /* up */ - stringstream message; - message << "\n" + stringstream message; + message << "\n" << 212 << ":" << "\n" /* hoststatusdata */ << 1 << "=" << "" << "\n" /* type */ << 2 << "=" << "" << "\n" /* flags */ @@ -500,7 +500,7 @@ void CompatIdoComponent::DumpHostStatus(const Host::Ptr& host) << 262 << "=" << "i2_customvar" << ":" << "1" << ":" << "i2_customvarmod" << "\n" /* customvariable */ << 999 << "\n\n"; /* enddata */ - m_IdoConnection->SendMessage(message.str()); + m_IdoConnection->SendMessage(message.str()); } /**