mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#4040 fix from HEAD
This commit is contained in:
parent
53a770590c
commit
c7248fed09
1 changed files with 1 additions and 2 deletions
|
|
@ -1095,7 +1095,7 @@ uniqueMemberMatch(
|
|||
struct berval *asserted = (struct berval *) assertedValue;
|
||||
struct berval assertedDN = *asserted;
|
||||
struct berval assertedUID = BER_BVNULL;
|
||||
struct berval valueDN = BER_BVNULL;
|
||||
struct berval valueDN = *value;
|
||||
struct berval valueUID = BER_BVNULL;
|
||||
|
||||
if ( !BER_BVISEMPTY( asserted ) ) {
|
||||
|
|
@ -1115,7 +1115,6 @@ uniqueMemberMatch(
|
|||
}
|
||||
|
||||
if ( !BER_BVISEMPTY( value ) ) {
|
||||
valueDN = *value;
|
||||
|
||||
valueUID.bv_val = strrchr( valueDN.bv_val, '#' );
|
||||
if ( !BER_BVISNULL( &valueUID ) ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue