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:19:30 +0100
commit59b1519ddb11cc2393037e97ae806656c6276020 (patch)
tree34b9530d54d5082d5aa53cc6b5b43de9cc4dfd0f
parent8f69d359e39fef44d60c12ac105ed5f398ad2599 (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 */