mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
ITS#7298 fix PermissiveModify control parsing
This commit is contained in:
parent
ccffd16085
commit
025b3b929e
1 changed files with 1 additions and 1 deletions
|
|
@ -1624,7 +1624,7 @@ static int parsePermissiveModify (
|
|||
return LDAP_PROTOCOL_ERROR;
|
||||
}
|
||||
|
||||
if ( BER_BVISNULL( &ctrl->ldctl_value )) {
|
||||
if ( !BER_BVISNULL( &ctrl->ldctl_value )) {
|
||||
rs->sr_text = "permissiveModify control value not absent";
|
||||
return LDAP_PROTOCOL_ERROR;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue