mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 16:19:35 -05:00
Bug fix.
This commit is contained in:
parent
7694c22528
commit
ba044208a6
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ ldbm_back_group(
|
||||||
bv.bv_val = (char *) op_ndn;
|
bv.bv_val = (char *) op_ndn;
|
||||||
bv.bv_len = strlen( op_ndn );
|
bv.bv_len = strlen( op_ndn );
|
||||||
|
|
||||||
if( value_find( group_at, attr->a_vals, &bv ) == 0 ) {
|
if( value_find( group_at, attr->a_vals, &bv ) != LDAP_SUCCESS ) {
|
||||||
Debug( LDAP_DEBUG_ACL,
|
Debug( LDAP_DEBUG_ACL,
|
||||||
"<= ldbm_back_group: \"%s\" not in \"%s\": %s\n",
|
"<= ldbm_back_group: \"%s\" not in \"%s\": %s\n",
|
||||||
op_ndn, gr_ndn, group_at_name );
|
op_ndn, gr_ndn, group_at_name );
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue