summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssh
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2018-02-28 16:57:54 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-03-04 11:35:41 +0000
commit52de574e0db0a7c5cce9681ac68fe488d5d029d2 (patch)
tree1e1281559471d343dcbce03a5b36ad52bcac54b5 /meta/recipes-connectivity/openssh
parentd50b9c511e17c6f582ef39b61eaaa8d4555eabba (diff)
downloadpoky-52de574e0db0a7c5cce9681ac68fe488d5d029d2.tar.gz
openssh: remove unused patch
Remove unused patch: 0001-openssh-Fix-syntax-error-on-x32.patch (From OE-Core rev: a752aa31fc8f3a3d283381b7235710af4ece16d8) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssh')
-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