diff options
author | Kang Kai <kai.kang@windriver.com> | 2014-08-20 17:41:02 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-23 13:18:06 +0200 |
commit | 956615824924543937f7f508251b5e583e308d34 (patch) | |
tree | edb9e3b165d90569ddd888757a673a132d1e5f8b /meta-oe/recipes-connectivity/samba/samba-3.6.24/smbtar-bashism.patch | |
parent | bb4fedff5f6f74165c52f3c978ed98c7f3f5539e (diff) | |
download | meta-openembedded-956615824924543937f7f508251b5e583e308d34.tar.gz |
samba: upgrade to 3.6.24
Upgrade samba to latest 3.6.x version.
* remove PR
* remove backport CVE patches
* update 4 patches: documentation.patch, documentation2.patch, undefined-symbols.patch
and bug_387266_upstream_4104_mention-kerberos-in-smbspool-manpage.patch
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity/samba/samba-3.6.24/smbtar-bashism.patch')
-rw-r--r-- | meta-oe/recipes-connectivity/samba/samba-3.6.24/smbtar-bashism.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/samba/samba-3.6.24/smbtar-bashism.patch b/meta-oe/recipes-connectivity/samba/samba-3.6.24/smbtar-bashism.patch new file mode 100644 index 000000000..27a47cb51 --- /dev/null +++ b/meta-oe/recipes-connectivity/samba/samba-3.6.24/smbtar-bashism.patch | |||
@@ -0,0 +1,19 @@ | |||
1 | Description: Avoid using bashism in smbtar | ||
2 | Author: Jelmer Vernooij <jelmer@samba.org> | ||
3 | Bug-Debian: http://bugs.debian.org/486056 | ||
4 | Forwarded: yes | ||
5 | Bug: https://bugzilla.samba.org/show_bug.cgi?id=8924 | ||
6 | |||
7 | Index: experimental/source3/script/smbtar | ||
8 | =================================================================== | ||
9 | --- experimental.orig/source3/script/smbtar | ||
10 | +++ experimental/source3/script/smbtar | ||
11 | @@ -151,7 +151,7 @@ | ||
12 | if [ -z "$verbose" ]; then | ||
13 | echo "server is $server" | ||
14 | # echo "share is $service" | ||
15 | - echo "share is $service\\$cdcmd" | ||
16 | + printf "share is %s\\%s\n" "$service" "$cdcmd" | ||
17 | echo "tar args is $tarargs" | ||
18 | # echo "password is $password" # passwords should never be sent to screen | ||
19 | echo "tape is $tapefile" | ||