Fix typo "==" -> "=" in test

This commit is contained in:
Hallvard Furuseth 2005-08-22 08:10:03 +00:00
parent 8d79695a66
commit dfe5336e21

View File

@ -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