Skip to content

Commit

Permalink
Merge pull request #684 from giuseppe/no-log-by-default
Browse files Browse the repository at this point in the history
seccomp: drop SECCOMP_FILTER_FLAG_LOG by default
  • Loading branch information
giuseppe authored Jun 1, 2021
2 parents a6ab5d5 + 9042ac5 commit c25ad40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcrun/seccomp.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ libcrun_apply_seccomp (int infd, int listener_receiver_fd, const char *receiver_

/* if no seccomp flag was specified use a sane default. */
if (seccomp_flags == NULL)
flags = SECCOMP_FILTER_FLAG_LOG | SECCOMP_FILTER_FLAG_SPEC_ALLOW;
flags = SECCOMP_FILTER_FLAG_SPEC_ALLOW;
else
{
size_t i = 0;
Expand Down

0 comments on commit c25ad40

Please sign in to comment.