]> granicus.if.org Git - icinga2/commitdiff
Update variable names 6568/head
authorJean Flach <jean-marcel.flach@icinga.com>
Wed, 22 Aug 2018 13:12:47 +0000 (15:12 +0200)
committerMichael Friedrich <michael.friedrich@icinga.com>
Tue, 4 Sep 2018 09:45:35 +0000 (11:45 +0200)
lib/config/configitem.cpp

index 258f38a35dcc9082a110f527f2c864bf7d472c4d..f435c94815fd8bd92864635982b7277862404636 100644 (file)
@@ -478,15 +478,15 @@ bool ConfigItem::CommitNewItems(const ActivationContext::Ptr& context, WorkQueue
                        if (unresolved_dep)
                                continue;
 
-                       int commited_items = 0;
-                       upq.ParallelFor(items, [&type, &commited_items](const ItemPair& ip) {
+                       int committed_items = 0;
+                       upq.ParallelFor(items, [&type, &committed_items](const ItemPair& ip) {
                                const ConfigItem::Ptr& item = ip.first;
 
                                if (item->m_Type != type)
                                        return;
 
                                ip.first->Commit(ip.second);
-                               commited_items++;
+                               committed_items++;
                        });
 
                        upq.Join();
@@ -494,9 +494,9 @@ bool ConfigItem::CommitNewItems(const ActivationContext::Ptr& context, WorkQueue
                        completed_types.insert(type);
 
 #ifdef I2_DEBUG
-                       if (commited_items > 0)
+                       if (committed_items > 0)
                                Log(LogDebug, "configitem")
-                                       << "Committed " << commited_items << " items of type '" << type->GetName() << "'.";
+                                       << "Committed " << committed_items << " items of type '" << type->GetName() << "'.";
 #endif /* I2_DEBUG */
 
                        if (upq.HasExceptions())