From: Volker Lendecke Date: Tue, 9 Mar 2021 16:34:26 +0000 (+0100) Subject: tests: Fix a typo X-Git-Tag: tevent-0.11.0~1549 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c58e9aa482cc650f99d040808ccfc780e1232210;p=thirdparty%2Fsamba.git tests: Fix a typo Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/script/tests/test_smb1_system_security.sh b/source3/script/tests/test_smb1_system_security.sh index 4c678b364f4..6db8d4471e1 100755 --- a/source3/script/tests/test_smb1_system_security.sh +++ b/source3/script/tests/test_smb1_system_security.sh @@ -35,7 +35,7 @@ smb1_system_security() { testit "grant SeSecurityPrivilege" $NET rpc rights grant $USERNAME SeSecurityPrivilege -U $USERNAME%$PASSWORD -I $SERVER_IP || failed=`expr $failed + 1` # Run the test. -testit "smb1-system-secuirity" smb1_system_security || failed=`expr $failed + 1` +testit "smb1-system-security" smb1_system_security || failed=`expr $failed + 1` # Revoke SeSecurityPrivilege testit "revoke SeSecurityPrivilege" $NET rpc rights revoke $USERNAME SeSecurityPrivilege -U $USERNAME%$PASSWORD -I $SERVER_IP || failed=`expr $failed + 1`