mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 07:39:35 -05:00
Fix comparison error
This commit is contained in:
parent
2e9f95cbac
commit
48ec8223da
1 changed files with 1 additions and 1 deletions
|
|
@ -265,7 +265,7 @@ $LDIFFILTER < $SLAVEOUT > $SLAVEFLT
|
||||||
echo "Comparing retrieved entries from provider and consumer..."
|
echo "Comparing retrieved entries from provider and consumer..."
|
||||||
$CMP $MASTERFLT $SLAVEFLT > $CMPOUT
|
$CMP $MASTERFLT $SLAVEFLT > $CMPOUT
|
||||||
|
|
||||||
if test $? == 0 ; then
|
if test $? = 0 ; then
|
||||||
echo "test failed - provider and consumer databases match"
|
echo "test failed - provider and consumer databases match"
|
||||||
echo "This is a regression of ITS8281"
|
echo "This is a regression of ITS8281"
|
||||||
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue