mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
* This is a security release in order to address the following defect: - CVE-2016-2119 (Client side SMB2/3 required signing can be downgraded) * Detail release note: - https://www.samba.org/samba/history/samba-4.4.5.html * Removed part of the 10-use-only-libsystemd.patch which has been fixed in new version. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From 5413f97290d3126262eb309ecbcf7769509f2a11 Mon Sep 17 00:00:00 2001
|
|
From: Jackie Huang <jackie.huang@windriver.com>
|
|
Date: Tue, 10 Nov 2015 00:48:35 -0500
|
|
Subject: [PATCH 6/7] avoid using colon in the checking msg
|
|
|
|
Upstream-Status: Pending
|
|
|
|
colon is used as the separator when parse from
|
|
a answers file, the colon here makes it never
|
|
get the right answer.
|
|
|
|
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
|
---
|
|
wscript_configure_system_mitkrb5 | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/wscript_configure_system_mitkrb5 b/wscript_configure_system_mitkrb5
|
|
index a62d00b..a2d89f0 100644
|
|
--- a/wscript_configure_system_mitkrb5
|
|
+++ b/wscript_configure_system_mitkrb5
|
|
@@ -240,7 +240,7 @@ conf.CHECK_CODE('''
|
|
''',
|
|
'HAVE_WRFILE_KEYTAB',
|
|
headers='krb5.h', lib='krb5', execute=True,
|
|
- msg="Checking whether the WRFILE:-keytab is supported");
|
|
+ msg="Checking whether the WRFILE -keytab is supported");
|
|
# Check for KRB5_DEPRECATED handling
|
|
conf.CHECK_CODE('''#define KRB5_DEPRECATED 1
|
|
#include <krb5.h>''',
|
|
--
|
|
1.9.1
|
|
|