diff options
author | Michael Adam <obnox@samba.org> | 2008-07-20 23:49:40 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-07-20 23:51:35 +0200 |
commit | 87e02bca04cb26d0d237f3ccd17be0ba2dd6d85f (patch) | |
tree | 392dbe8855c48a0beca8426a19f777b8d59a5052 /source/script | |
parent | f2656e5c2e700523ead7a62734d203ad0caaff0c (diff) | |
download | samba-87e02bca04cb26d0d237f3ccd17be0ba2dd6d85f.tar.gz samba-87e02bca04cb26d0d237f3ccd17be0ba2dd6d85f.tar.xz samba-87e02bca04cb26d0d237f3ccd17be0ba2dd6d85f.zip |
testsuite: fix expr syntax error in net registry test.
Pointed out by Björn Jacke <bj@sernet.de>.
Michael
Diffstat (limited to 'source/script')
-rwxr-xr-x | source/script/tests/test_net_registry.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/tests/test_net_registry.sh b/source/script/tests/test_net_registry.sh index 0f29b250196..5edcb061ee2 100755 --- a/source/script/tests/test_net_registry.sh +++ b/source/script/tests/test_net_registry.sh @@ -362,7 +362,7 @@ take_administrative_rights() if test "x${RPC}" = "xrpc" ; then testit "giving user ${USERNAME} administrative rights" \ give_administrative_rights || \ - failed=`expr $failed +1` + failed=`expr $failed + 1` fi testit "enumerate HKLM" \ |