On Wed, Mar 23, 2016 at 6:46 PM, Mickaël Salaün <mic@xxxxxxxxxxx> wrote: > Signed-off-by: Mickaël Salaün <mic@xxxxxxxxxxx> > Cc: Kees Cook <keescook@xxxxxxxxxxxx> > Cc: Andy Lutomirski <luto@xxxxxxxxxxxxxx> > Cc: Will Drewry <wad@xxxxxxxxxxxx> Another good catch. Shuah, can you take this one too? Acked-by: Kees Cook <keescook@xxxxxxxxxxxx> -Kees > --- > tools/testing/selftests/seccomp/seccomp_bpf.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tools/testing/selftests/seccomp/seccomp_bpf.c b/tools/testing/selftests/seccomp/seccomp_bpf.c > index 9c1460f277c2..150829dd7998 100644 > --- a/tools/testing/selftests/seccomp/seccomp_bpf.c > +++ b/tools/testing/selftests/seccomp/seccomp_bpf.c > @@ -1502,10 +1502,10 @@ TEST_F(TRACE_syscall, syscall_dropped) > #endif > > #ifndef seccomp > -int seccomp(unsigned int op, unsigned int flags, struct sock_fprog *filter) > +int seccomp(unsigned int op, unsigned int flags, void *args) > { > errno = 0; > - return syscall(__NR_seccomp, op, flags, filter); > + return syscall(__NR_seccomp, op, flags, args); > } > #endif > > -- > 2.8.0.rc3 > -- Kees Cook Chrome OS & Brillo Security -- To unsubscribe from this list: send the line "unsubscribe linux-api" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html