summaryrefslogtreecommitdiff
path: root/sandbox-seccomp-filter.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2017-03-21 08:47:55 +1100
committerDamien Miller <djm@mindrot.org>2017-03-21 08:47:55 +1100
commit6b853c6f8ba5eecc50f3b57af8e63f8184eb0fa6 (patch)
tree0780560bc147e25dedbbd6ed3327a1dc5b3f5527 /sandbox-seccomp-filter.c
parentd38f05dbdd291212bc95ea80648b72b7177e9f4e (diff)
Fix syntax error on Linux/X32
Patch from Mike Frysinger
Diffstat (limited to 'sandbox-seccomp-filter.c')
-rw-r--r--sandbox-seccomp-filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
index 3a1aedce7..a8d472a63 100644
--- a/sandbox-seccomp-filter.c
+++ b/sandbox-seccomp-filter.c
@@ -235,7 +235,7 @@ static const struct sock_filter preauth_insns[] = {
235 * x86-64 syscall under some circumstances, e.g. 235 * x86-64 syscall under some circumstances, e.g.
236 * https://bugs.debian.org/849923 236 * https://bugs.debian.org/849923
237 */ 237 */
238 SC_ALLOW(__NR_clock_gettime & ~__X32_SYSCALL_BIT); 238 SC_ALLOW(__NR_clock_gettime & ~__X32_SYSCALL_BIT),
239#endif 239#endif
240 240
241 /* Default deny */ 241 /* Default deny */