Commit 505ce68c authored by Mickaël Salaün's avatar Mickaël Salaün Committed by Shuah Khan

selftest/seccomp: Fix the seccomp(2) signature

Signed-off-by: default avatarMickaël Salaün <mic@digikod.net>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Kees Cook <keescook@chromium.org>
Cc: Shuah Khan <shuahkh@osg.samsung.com>
Cc: Will Drewry <wad@chromium.org>
Acked-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarShuah Khan <shuahkh@osg.samsung.com>
parent 6c045d07
...@@ -1502,10 +1502,10 @@ TEST_F(TRACE_syscall, syscall_dropped) ...@@ -1502,10 +1502,10 @@ TEST_F(TRACE_syscall, syscall_dropped)
#endif #endif
#ifndef seccomp #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; errno = 0;
return syscall(__NR_seccomp, op, flags, filter); return syscall(__NR_seccomp, op, flags, args);
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment