]> git.sur5r.net Git - openldap/commitdiff
Fix typo "==" -> "=" in test
authorHallvard Furuseth <hallvard@openldap.org>
Mon, 22 Aug 2005 08:10:03 +0000 (08:10 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Mon, 22 Aug 2005 08:10:03 +0000 (08:10 +0000)
tests/scripts/sql-test000-read

index 98ebe373267d89916dba9083ae2ce055e44d9cbc..26ebc768460ac0d093d1bf4b8be649c1c61185b8 100755 (executable)
@@ -71,7 +71,7 @@ fi
 echo -n "Testing incorrect bind (should fail)... "
 $LDAPWHOAMI -h $LOCALHOST -p $PORT1 -D "$BINDDN" -w "XXX"
 RC=$?
-if test $RC == 0 ; then
+if test $RC = 0 ; then
        echo "ldapwhoami should have failed ($RC)!"
        test $KILLSERVERS != no && kill -HUP $KILLPIDS
        exit $RC