summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2017-03-21 08:47:55 +1100
committerColin Watson <cjwatson@debian.org>2017-08-22 16:24:44 +0100
commit4a6a0dd530022333dccf0e54a4c2827662b14109 (patch)
treea210ccb427de841e97cc35f109d4cff6f9e97755
parent735a04bf257744fc490581e9d5d7e607e4419579 (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
-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 */