From: Andreas Schneider Date: Mon, 21 Feb 2022 10:23:27 +0000 (+0100) Subject: s3:script: Fix variable asignment in test_dfree_command.sh X-Git-Tag: talloc-2.4.0~1413 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=665db97662664cc8f657a9d3b1af286748356e76;p=thirdparty%2Fsamba.git s3:script: Fix variable asignment in test_dfree_command.sh Signed-off-by: Andreas Schneider Reviewed-by: Pavel Filipenský --- diff --git a/source3/script/tests/test_dfree_command.sh b/source3/script/tests/test_dfree_command.sh index 0a087aeccb5..39f516d30bf 100755 --- a/source3/script/tests/test_dfree_command.sh +++ b/source3/script/tests/test_dfree_command.sh @@ -62,6 +62,6 @@ elif [ $protocol = "NT1" ]; then else echo "unsupported protocol $protocol" | subunit_fail_test "Test dfree command" - $failed=$(expr $failed + 1) + failed=$(expr $failed + 1) fi exit $failed