Skip to content

Commit

Permalink
vcpkg: yara: update to Yara 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienfl-orc committed Feb 8, 2024
1 parent 577f019 commit 2ff3b3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/vcpkg
3 changes: 2 additions & 1 deletion src/OrcLib/YaraScanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,8 @@ HRESULT Orc::YaraScanner::PrintConfiguration()
YR_RULE* yr_rule = nullptr;
yr_rules_foreach(yr_rules, yr_rule)
{
Log::Info("Rule: {} ({})", yr_rule->identifier, RULE_IS_DISABLED(yr_rule) ? "disabled" : "enabled");
const auto rule = RULE_IS_DISABLED(yr_rule) ? "disabled" : "enabled";
Log::Info("Rule: {} ({})", yr_rule->identifier, rule);
}
return S_OK;
}
Expand Down

0 comments on commit 2ff3b3f

Please sign in to comment.