]> granicus.if.org Git - icinga2/commitdiff
Fixed indentation.
authorGunnar Beutner <gunnar.beutner@netways.de>
Thu, 22 Nov 2012 12:16:38 +0000 (13:16 +0100)
committerGunnar Beutner <gunnar.beutner@netways.de>
Thu, 22 Nov 2012 12:16:38 +0000 (13:16 +0100)
components/compatido/compatidocomponent.cpp

index 4c2152f81b155b66a14169f322473f84417eb5b8..c680ba1b81d3204c4a15c9962f6ce0537b04ef09 100644 (file)
@@ -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());
 }
 
 /**