From 7c2dbf48cfd0bd2b3969a89c9947a4949426244e Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Mon, 24 Jul 2017 22:18:00 -0300 Subject: [PATCH] Typo in the debuglogs for rules::getFinalVars --- src/rule.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/rule.cc b/src/rule.cc index 670237dc..5bb455b1 100644 --- a/src/rule.cc +++ b/src/rule.cc @@ -502,7 +502,8 @@ std::vector> Rule::getFinalVars( != exclusions_update_by_tag_remove.end()) { #ifndef NO_LOGS trans->debug(9, "Variable: " + *key + - " is part of the exclusion list (from update by tag), skipping..."); + " is part of the exclusion list (from update by tag " + + "), skipping..."); #endif if (v->m_dynamic) { delete v; @@ -555,7 +556,7 @@ std::vector> Rule::getFinalVars( } if (args == *key) { trans->debug(9, "Variable: " + *key + - " was excluded by ruleRemoteTargetById..."); + " was excluded by ruleRemoveTargetById..."); ignoreVariable = true; break; }