diff options
author | sweeaun <swee.aun.khor@intel.com> | 2017-08-28 15:14:07 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-30 11:14:25 +0100 |
commit | 94fe1dd8b65f1948d3c4d520e7bef9586cb784cf (patch) | |
tree | ce9e001874d643ca6f34b478690bf3d9d135381d /meta/recipes-connectivity/openssh/openssh | |
parent | bc2e0b2e9b95707d96c840dade12b00e1450ecc3 (diff) | |
download | poky-94fe1dd8b65f1948d3c4d520e7bef9586cb784cf.tar.gz |
openssh: Fix syntax error on x32
Fix compilation error during openssh x32 build due to syntax error.
(From OE-Core rev: 74d41b4870bec88015c079444daad0a68f69abe9)
Signed-off-by: sweeaun <swee.aun.khor@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssh/openssh')
-rw-r--r-- | meta/recipes-connectivity/openssh/openssh/0001-openssh-Fix-syntax-error-on-x32.patch | 33 |
1 files changed, 33 insertions, 0 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 new file mode 100644 index 0000000000..ce9e200d78 --- /dev/null +++ b/meta/recipes-connectivity/openssh/openssh/0001-openssh-Fix-syntax-error-on-x32.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | From a7e359d4ba345aa2a13c07f1057184e9b4e598a2 Mon Sep 17 00:00:00 2001 | ||
2 | From: sweeaun <swee.aun.khor@intel.com> | ||
3 | Date: Tue, 22 Aug 2017 11:19:48 -0700 | ||
4 | Subject: [PATCH] openssh: Fix syntax error on x32 | ||
5 | |||
6 | Upstream-Status: Backport | ||
7 | This bug has been fixed in v_7.5 branch https://github.com/openssh/ | ||
8 | openssh-portable/tree/V_7_5 and master branch https://github.com/ | ||
9 | openssh/openssh-portable/tree/master. | ||
10 | |||
11 | Fix compilation error during openssh x32 build due to syntax error. | ||
12 | |||
13 | Signed-off-by: sweeaun <swee.aun.khor@intel.com> | ||
14 | --- | ||
15 | sandbox-seccomp-filter.c | 2 +- | ||
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
17 | |||
18 | diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c | ||
19 | index 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 | -- | ||
32 | 2.7.4 | ||
33 | |||