summaryrefslogtreecommitdiff
path: root/sandbox-seccomp-filter.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2017-04-02 13:19:46 +0100
committerColin Watson <cjwatson@debian.org>2017-04-02 13:20:03 +0100
commit524f638f9ac661d468c8c9bb26bd3a0231b31793 (patch)
tree9fccfb4ea608738502a0782e045c45489164fb79 /sandbox-seccomp-filter.c
parentb8fb08fe0c6ea8a3e75882ed80e95c882383940a (diff)
parent93563703c3acd94883e89baa7fcbf666318e2704 (diff)
Fix syntax error on Linux/X32
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 08dc3a8b2..2831e9d10 100644
--- a/sandbox-seccomp-filter.c
+++ b/sandbox-seccomp-filter.c
@@ -238,7 +238,7 @@ static const struct sock_filter preauth_insns[] = {
238 * x86-64 syscall under some circumstances, e.g. 238 * x86-64 syscall under some circumstances, e.g.
239 * https://bugs.debian.org/849923 239 * https://bugs.debian.org/849923
240 */ 240 */
241 SC_ALLOW(__NR_clock_gettime & ~__X32_SYSCALL_BIT); 241 SC_ALLOW(__NR_clock_gettime & ~__X32_SYSCALL_BIT),
242#endif 242#endif
243 243
244 /* Default deny */ 244 /* Default deny */