mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Permissive support for LDAP_MOD_INCREMENT -- treat absence of attribute
as if attribute existed with a value of 0
This commit is contained in:
parent
17dbef6ba8
commit
f341270a46
@ -377,11 +377,19 @@ modify_increment_values(
|
|||||||
|
|
||||||
a = attr_find( e->e_attrs, mod->sm_desc );
|
a = attr_find( e->e_attrs, mod->sm_desc );
|
||||||
if( a == NULL ) {
|
if( a == NULL ) {
|
||||||
*text = textbuf;
|
if ( permissive ) {
|
||||||
snprintf( textbuf, textlen,
|
Modification modReplace = *mod;
|
||||||
"modify/increment: %s: no such attribute",
|
|
||||||
mod->sm_desc->ad_cname.bv_val );
|
modReplace.sm_op = LDAP_MOD_REPLACE;
|
||||||
return LDAP_NO_SUCH_ATTRIBUTE;
|
|
||||||
|
return modify_add_values(e, &modReplace, permissive, text, textbuf, textlen);
|
||||||
|
} else {
|
||||||
|
*text = textbuf;
|
||||||
|
snprintf( textbuf, textlen,
|
||||||
|
"modify/increment: %s: no such attribute",
|
||||||
|
mod->sm_desc->ad_cname.bv_val );
|
||||||
|
return LDAP_NO_SUCH_ATTRIBUTE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !strcmp( a->a_desc->ad_type->sat_syntax_oid, SLAPD_INTEGER_SYNTAX )) {
|
if ( !strcmp( a->a_desc->ad_type->sat_syntax_oid, SLAPD_INTEGER_SYNTAX )) {
|
||||||
|
Loading…
Reference in New Issue
Block a user