Skip to content

Commit

Permalink
fix(userspace/falco/app_actions/print_version.cpp): correct getter ca…
Browse files Browse the repository at this point in the history
…ll for schema version


Signed-off-by: Leonardo Grasso <me@leonardograsso.com>

Co-authored-by: Jason Dellaluce <jasondellaluce@gmail.com>
  • Loading branch information
2 people authored and poiana committed Jun 23, 2022
1 parent f3bc178 commit 2f208b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userspace/falco/app_actions/print_version.cpp
Expand Up @@ -33,7 +33,7 @@ application::run_result application::print_version()
unsigned long driver_api_major = PPM_API_VERSION_MAJOR(driver_api_version);
unsigned long driver_api_minor = PPM_API_VERSION_MINOR(driver_api_version);
unsigned long driver_api_patch = PPM_API_VERSION_PATCH(driver_api_version);
auto driver_schema_version = s->get_scap_api_version();
auto driver_schema_version = s->get_scap_schema_version();
unsigned long driver_schema_major = PPM_API_VERSION_MAJOR(driver_schema_version);
unsigned long driver_schema_minor = PPM_API_VERSION_MINOR(driver_schema_version);
unsigned long driver_schema_patch = PPM_API_VERSION_PATCH(driver_schema_version);
Expand Down

0 comments on commit 2f208b5

Please sign in to comment.