diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-03-01 02:37:31 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-03-01 02:37:31 +0000 |
commit | 10e686a543d7b138787e7fc6a88fbc56f793ffc5 (patch) | |
tree | c64547fb69a44ab338de8374e3ed77fc2e6529fa /testsuite/build_farm | |
parent | 8064c56f59d2709db0bfbbbbf319192a7f7e479d (diff) | |
download | samba-10e686a543d7b138787e7fc6a88fbc56f793ffc5.tar.gz samba-10e686a543d7b138787e7fc6a88fbc56f793ffc5.tar.bz2 samba-10e686a543d7b138787e7fc6a88fbc56f793ffc5.zip |
use the variable passed as a paramater, not just one randomly in our namespace.
Andrew Bartlett
(This used to be commit 18f6d476154163543e865b1fe200cd94288d5dc1)
Diffstat (limited to 'testsuite/build_farm')
-rw-r--r-- | testsuite/build_farm/basicsmb.fns | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/build_farm/basicsmb.fns b/testsuite/build_farm/basicsmb.fns index 75c40e879e..135a17fe93 100644 --- a/testsuite/build_farm/basicsmb.fns +++ b/testsuite/build_farm/basicsmb.fns @@ -75,7 +75,7 @@ test_smbpasswd() { test_smbpasswd_password="$1" rm -f $prefix/private/smbpasswd echo "( echo $test_smbpasswd_password ; echo $test_smbpasswd_password; ) | $prefix/bin/smbpasswd -L -s -a $whoami" - ( echo $password ; echo $password; ) | $prefix/bin/smbpasswd -L -s -a $whoami + ( echo $test_smbpasswd_password; echo $test_smbpasswd_password; ) | $prefix/bin/smbpasswd -L -s -a $whoami status=$? if [ $status = 0 ]; then echo "smbpasswd correctly set initial password ($test_smbpasswd_password)" |