diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-17 07:06:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:21 -0500 |
commit | c04d8261822481c9a291ecc0f4c65f067f4fd378 (patch) | |
tree | c4f44c0f74d502c2b3aa445f2e7d8c20428f7f65 /source4 | |
parent | fa165a688c5c05150fc51f286d30011b053f80ea (diff) | |
download | samba-c04d8261822481c9a291ecc0f4c65f067f4fd378.tar.gz samba-c04d8261822481c9a291ecc0f4c65f067f4fd378.tar.bz2 samba-c04d8261822481c9a291ecc0f4c65f067f4fd378.zip |
r7678: fixed typo
(This used to be commit df29f25140192b64b55012d0a3c36095fbbfb82d)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/script/tests/test_ldap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/script/tests/test_ldap.sh b/source4/script/tests/test_ldap.sh index 43c251d7e7..6d31829845 100755 --- a/source4/script/tests/test_ldap.sh +++ b/source4/script/tests/test_ldap.sh @@ -22,7 +22,7 @@ echo "BASEDN is $BASEDN" testit "Listing Users" bin/ldbsearch -H ldap://$SERVER -b "$BASEDN" '(objectclass=user)' sAMAccountName || failed=`expr $failed + 1` -testit "Listing Users" bin/ldbsearch -H ldap://$SERVER -b "$BASEDN" '(objectclass=group)' sAMAccountName || failed=`expr $failed + 1` +testit "Listing Groups" bin/ldbsearch -H ldap://$SERVER -b "$BASEDN" '(objectclass=group)' sAMAccountName || failed=`expr $failed + 1` testit "CLDAP" bin/smbtorture $TORTURE_OPTIONS //$SERVER/_none_ LDAP-CLDAP || failed=`expr $failed + 1` |