diff options
author | Damien Miller <djm@mindrot.org> | 2017-03-21 08:47:55 +1100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2017-04-02 13:19:07 +0100 |
commit | 93563703c3acd94883e89baa7fcbf666318e2704 (patch) | |
tree | 4301abbbea1e270a3ff004d7116f713317f74e9d /sandbox-seccomp-filter.c | |
parent | 326d5114682d8ddbb64dead273d7738aea10e30a (diff) |
Fix syntax error on Linux/X32
Patch from Mike Frysinger
Origin: https://anongit.mindrot.org/openssh.git/commit/?id=6b853c6f8ba5eecc50f3b57af8e63f8184eb0fa6
Last-Update: 2017-04-02
Patch-Name: x32-syntax-error.patch
Diffstat (limited to 'sandbox-seccomp-filter.c')
-rw-r--r-- | sandbox-seccomp-filter.c | 2 |
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 */ |