mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
ITS#3931 fix dnRelativeMatch return values
This commit is contained in:
parent
19b8e9e1ce
commit
b15a72caec
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue