summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2022-04-22 15:34:10 +0200
committerAndreas Schneider <asn@cryptomilk.org>2022-06-08 13:14:47 +0000
commit48e1458bdbfacbc1d37bc9e9e197f5e7e6b0e238 (patch)
tree4fe44ebd0dbb68ea3fb62c2c8b1219c5b88778c9
parentb923da58578d28424781378072f3d38a69fb9756 (diff)
downloadsamba-48e1458bdbfacbc1d37bc9e9e197f5e7e6b0e238.tar.gz
s3:tests: Reformat test_rpcclient_pw_nt_hash.sh
shfmt -f source3/script/| xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
-rwxr-xr-xsource3/script/tests/test_rpcclient_pw_nt_hash.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/script/tests/test_rpcclient_pw_nt_hash.sh b/source3/script/tests/test_rpcclient_pw_nt_hash.sh
index c03d22f1f69..33e49a86f92 100755
--- a/source3/script/tests/test_rpcclient_pw_nt_hash.sh
+++ b/source3/script/tests/test_rpcclient_pw_nt_hash.sh
@@ -4,10 +4,10 @@
#
if [ $# -lt 4 ]; then
-cat <<EOF
+ cat <<EOF
Usage: test_rpcclient_pw_nt_hash.sh USERNAME PASSWORD SERVER RPCCLIENT
EOF
-exit 1;
+ exit 1
fi
USERNAME="$1"
@@ -15,13 +15,13 @@ PASSWORD="$2"
SERVER="$3"
RPCCLIENT="$4"
-HASH=`echo -n $PASSWORD | iconv -t utf16le | openssl md4 |cut -d ' ' -f2`
+HASH=$(echo -n $PASSWORD | iconv -t utf16le | openssl md4 | cut -d ' ' -f2)
RPCCLIENTCMD="$RPCCLIENT $SERVER --pw-nt-hash -U$USERNAME%$HASH -c queryuser"
incdir=$(dirname $0)/../../../testprogs/blackbox
. $incdir/subunit.sh
-testit "rpcclient --pw-nt-hash" $RPCCLIENTCMD || failed=`expr $failed + 1`
+testit "rpcclient --pw-nt-hash" $RPCCLIENTCMD || failed=$(expr $failed + 1)
testok $0 $failed