ITS#3931 fix dnRelativeMatch return values

This commit is contained in:
Howard Chu 2005-08-14 23:08:20 +00:00
parent 19b8e9e1ce
commit b15a72caec

View file

@ -996,7 +996,7 @@ dnRelativeMatch(
asserted->bv_val,
asserted->bv_len );
} else {
return 1;
match = 1;
}
}
@ -1022,7 +1022,7 @@ dnRelativeMatch(
asserted->bv_val,
asserted->bv_len );
} else {
return 1;
match = 1;
}
}
@ -1049,7 +1049,7 @@ dnRelativeMatch(
match = dnIsOneLevelRDN( &rdn ) ? 0 : 1;
}
} else {
return 1;
match = 1;
}
}