summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-connectivity/openssh/openssh/0001-openssh-Fix-syntax-error-on-x32.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh/0001-openssh-Fix-syntax-error-on-x32.patch b/meta/recipes-connectivity/openssh/openssh/0001-openssh-Fix-syntax-error-on-x32.patch
deleted file mode 100644
index ce9e200d78..0000000000
--- a/meta/recipes-connectivity/openssh/openssh/0001-openssh-Fix-syntax-error-on-x32.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From a7e359d4ba345aa2a13c07f1057184e9b4e598a2 Mon Sep 17 00:00:00 2001
2From: sweeaun <swee.aun.khor@intel.com>
3Date: Tue, 22 Aug 2017 11:19:48 -0700
4Subject: [PATCH] openssh: Fix syntax error on x32
5
6Upstream-Status: Backport
7This bug has been fixed in v_7.5 branch https://github.com/openssh/
8openssh-portable/tree/V_7_5 and master branch https://github.com/
9openssh/openssh-portable/tree/master.
10
11Fix compilation error during openssh x32 build due to syntax error.
12
13Signed-off-by: sweeaun <swee.aun.khor@intel.com>
14---
15 sandbox-seccomp-filter.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c
19index 3a1aedc..a8d472a 100644
20--- a/sandbox-seccomp-filter.c
21+++ b/sandbox-seccomp-filter.c
22@@ -235,7 +235,7 @@ static const struct sock_filter preauth_insns[] = {
23 * x86-64 syscall under some circumstances, e.g.
24 * https://bugs.debian.org/849923
25 */
26- SC_ALLOW(__NR_clock_gettime & ~__X32_SYSCALL_BIT);
27+ SC_ALLOW(__NR_clock_gettime & ~__X32_SYSCALL_BIT),
28 #endif
29
30 /* Default deny */
31--
322.7.4
33