Skip to content

Commit

Permalink
Fix copypasta.
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapsdz committed Nov 18, 2023
1 parent b0331b8 commit c524116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sandbox-seccomp-filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ static const struct sock_filter preauth_ctrl[] = {
SC_ALLOW(select),
#endif
#ifdef __NR_pselect6
SC_ALLOW(__NR_pselect6),
SC_ALLOW(pselect6),
#endif
SC_ALLOW(madvise),
#ifdef __NR_mmap2 /* EABI ARM only has mmap2() */
Expand Down Expand Up @@ -218,7 +218,7 @@ static const struct sock_filter preauth_work[] = {
SC_ALLOW(select),
#endif
#ifdef __NR_pselect6
SC_ALLOW(__NR_pselect6),
SC_ALLOW(pselect6),
#endif
SC_ALLOW(madvise),
#ifdef __NR_mmap2 /* EABI ARM only has mmap2() */
Expand Down

0 comments on commit c524116

Please sign in to comment.