mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-06 06:59:54 -05:00
fix bitwise test (ITS#5445)
This commit is contained in:
parent
f3eeb81458
commit
8cb162ef44
1 changed files with 1 additions and 1 deletions
|
|
@ -2385,7 +2385,7 @@ syncprov_operational(
|
|||
}
|
||||
|
||||
if ( !ap ) {
|
||||
if ( !rs->sr_flags & REP_ENTRY_MODIFIABLE ) {
|
||||
if ( !(rs->sr_flags & REP_ENTRY_MODIFIABLE) ) {
|
||||
rs->sr_entry = entry_dup( rs->sr_entry );
|
||||
rs->sr_flags |=
|
||||
REP_ENTRY_MODIFIABLE|REP_ENTRY_MUSTBEFREED;
|
||||
|
|
|
|||
Loading…
Reference in a new issue