From c524116d5addd52c718b9008d2f13cbd848425f7 Mon Sep 17 00:00:00 2001 From: Kristaps Dz Date: Sat, 18 Nov 2023 15:38:47 -0800 Subject: [PATCH] Fix copypasta. --- sandbox-seccomp-filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index 2510ed1c..75030ede 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c @@ -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() */ @@ -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() */