mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#5569
This commit is contained in:
parent
c68bb6a0e1
commit
7b7d6baf7b
2 changed files with 2 additions and 1 deletions
1
CHANGES
1
CHANGES
|
|
@ -4,6 +4,7 @@ OpenLDAP 2.3.43 Engineering
|
|||
Fixed liblber ber_get_next length decoding (ITS#5580)
|
||||
Fixed slapd replog timestamps (ITS#5532)
|
||||
Fixed slapd socket assert (ITS#5489)
|
||||
Fixed slapo-ppolicy modify with internal ops (ITS#5569)
|
||||
Fixed slapo-syncprov psearch on closed connection (ITS#5401, ITS#5565)
|
||||
|
||||
OpenLDAP 2.3.42 Release (2008/05/28)
|
||||
|
|
|
|||
|
|
@ -1573,7 +1573,7 @@ ppolicy_modify( Operation *op, SlapReply *rs )
|
|||
}
|
||||
}
|
||||
|
||||
} else if ( !is_at_operational( ml->sml_desc->ad_type ) ) {
|
||||
} else if ( !(ml->sml_flags & SLAP_MOD_INTERNAL) && !is_at_operational( ml->sml_desc->ad_type ) ) {
|
||||
mod_pw_only = 0;
|
||||
/* modifying something other than password */
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue