[openssh-commits] [openssh] 01/01: Fix syntax error on Linux/X32
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Mar 21 08:50:48 AEDT 2017
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch V_7_5
in repository openssh.
commit 173359e4cb1e8d4dd429cbafafa8d54a141e7a83
Author: Damien Miller <djm at mindrot.org>
Date: Tue Mar 21 08:47:55 2017 +1100
Fix syntax error on Linux/X32
Patch from Mike Frysinger
---
sandbox-seccomp-filter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
index 3a1aedc..a8d472a 100644
--- a/sandbox-seccomp-filter.c
+++ b/sandbox-seccomp-filter.c
@@ -235,7 +235,7 @@ static const struct sock_filter preauth_insns[] = {
* x86-64 syscall under some circumstances, e.g.
* https://bugs.debian.org/849923
*/
- SC_ALLOW(__NR_clock_gettime & ~__X32_SYSCALL_BIT);
+ SC_ALLOW(__NR_clock_gettime & ~__X32_SYSCALL_BIT),
#endif
/* Default deny */
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list