mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
Fix comparison error
This commit is contained in:
parent
2e9f95cbac
commit
48ec8223da
@ -265,7 +265,7 @@ $LDIFFILTER < $SLAVEOUT > $SLAVEFLT
|
||||
echo "Comparing retrieved entries from provider and consumer..."
|
||||
$CMP $MASTERFLT $SLAVEFLT > $CMPOUT
|
||||
|
||||
if test $? == 0 ; then
|
||||
if test $? = 0 ; then
|
||||
echo "test failed - provider and consumer databases match"
|
||||
echo "This is a regression of ITS8281"
|
||||
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
||||
|
Loading…
Reference in New Issue
Block a user