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 | a197e2571331af804d4025535bb660ecc06ca008 (patch) | |
tree | 6f413f26b2fab31f152e18ad2d68f082d329f5b5 /source3/script | |
parent | 55f84c05bdb33f9c97bb71240e02a8f5a77b3355 (diff) | |
download | samba-a197e2571331af804d4025535bb660ecc06ca008.tar.gz samba-a197e2571331af804d4025535bb660ecc06ca008.tar.bz2 samba-a197e2571331af804d4025535bb660ecc06ca008.zip |
testsuite: fix expr syntax error in net registry test.
Pointed out by Björn Jacke <bj@sernet.de>.
Michael
(This used to be commit 87e02bca04cb26d0d237f3ccd17be0ba2dd6d85f)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/test_net_registry.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/tests/test_net_registry.sh b/source3/script/tests/test_net_registry.sh index 0f29b25019..5edcb061ee 100755 --- a/source3/script/tests/test_net_registry.sh +++ b/source3/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" \ |