Files
meta-openembedded/meta-oe/recipes-connectivity/samba/samba-3.6.8/smbtar-bashism.patch
Otavio Salvador be304441d8 samba: update to version 3.6.8
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-10-24 08:29:45 +02:00

20 lines
765 B
Diff

Description: Avoid using bashism in smbtar
Author: Jelmer Vernooij <jelmer@samba.org>
Bug-Debian: http://bugs.debian.org/486056
Forwarded: yes
Bug: https://bugzilla.samba.org/show_bug.cgi?id=8924
Index: experimental/source3/script/smbtar
===================================================================
--- experimental.orig/source3/script/smbtar
+++ experimental/source3/script/smbtar
@@ -151,7 +151,7 @@
if [ -z "$verbose" ]; then
echo "server is $server"
# echo "share is $service"
- echo "share is $service\\$cdcmd"
+ printf "share is %s\\%s\n" "$service" "$cdcmd"
echo "tar args is $tarargs"
# echo "password is $password" # passwords should never be sent to screen
echo "tape is $tapefile"