mirror of
https://github.com/falcosecurity/falco.git
synced 2025-09-02 07:05:54 +00:00
fix(userspace/falco): typo for consumer related methods
Signed-off-by: Leonardo Di Donato <leodidonato@gmail.com>
This commit is contained in:
committed by
Lorenzo Fontana
parent
468fa35965
commit
9e355e1a74
@@ -312,7 +312,7 @@ uint64_t do_inspect(falco_engine *engine,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!ev->simple_comsumer_consider() && !all_events)
|
if(!ev->simple_consumer_consider() && !all_events)
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -343,7 +343,7 @@ static void print_all_ignored_events(sinsp *inspector)
|
|||||||
std::set<string> ignored_event_names;
|
std::set<string> ignored_event_names;
|
||||||
for(uint32_t j = 0; j < PPM_EVENT_MAX; j++)
|
for(uint32_t j = 0; j < PPM_EVENT_MAX; j++)
|
||||||
{
|
{
|
||||||
if(!sinsp::simple_comsumer_consider_evtnum(j))
|
if(!sinsp::simple_consumer_consider_evtnum(j))
|
||||||
{
|
{
|
||||||
std::string name = etable[j].name;
|
std::string name = etable[j].name;
|
||||||
// Ignore event names NA*
|
// Ignore event names NA*
|
||||||
@@ -356,7 +356,7 @@ static void print_all_ignored_events(sinsp *inspector)
|
|||||||
|
|
||||||
for(uint32_t j = 0; j < PPM_SC_MAX; j++)
|
for(uint32_t j = 0; j < PPM_SC_MAX; j++)
|
||||||
{
|
{
|
||||||
if(!sinsp::simple_comsumer_consider_syscallid(j))
|
if(!sinsp::simple_consumer_consider_syscallid(j))
|
||||||
{
|
{
|
||||||
std::string name = stable[j].name;
|
std::string name = stable[j].name;
|
||||||
// Ignore event names NA*
|
// Ignore event names NA*
|
||||||
|
Reference in New Issue
Block a user