Skip to content

Commit

Permalink
Fix option name in config check
Browse files Browse the repository at this point in the history
The option is --syscall, not --syscalls
  • Loading branch information
cvonelm committed Sep 13, 2023
1 parent cc4b46c commit cc4bb53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ void parse_program_options(int argc, const char** argv)
std::exit(EXIT_FAILURE);
}

if (arguments.provided("syscalls"))
if (arguments.provided("syscall"))
{
Log::fatal() << "Syscall recording is only available in system-wide monitoring mode";
std::exit(EXIT_FAILURE);
Expand Down

0 comments on commit cc4bb53

Please sign in to comment.