From: Pierangelo Masarati Date: Tue, 17 Feb 2004 12:39:42 +0000 (+0000) Subject: allow no-user-modification propagations if back-ldap is used for replication (i.e... X-Git-Tag: OPENLDAP_REL_ENG_2_2_BP~426 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cb3d538ea337bb226d108a07cdf6d3734b2bb5b5;p=openldap allow no-user-modification propagations if back-ldap is used for replication (i.e. updatedn is defined) --- diff --git a/servers/slapd/back-ldap/add.c b/servers/slapd/back-ldap/add.c index d2f6a384f2..3aff8df61e 100644 --- a/servers/slapd/back-ldap/add.c +++ b/servers/slapd/back-ldap/add.c @@ -45,6 +45,7 @@ ldap_back_add( struct berval mdn = { 0, NULL }; ber_int_t msgid; dncookie dc; + int update; #ifdef LDAP_BACK_PROXY_AUTHZ LDAPControl **ctrls = NULL; int rc = LDAP_SUCCESS; @@ -88,8 +89,10 @@ ldap_back_add( #ifdef ENABLE_REWRITE dc.ctx = "addDnAttr"; #endif + + update = op->o_bd->be_update_ndn.bv_len; for (i=0, a=op->oq_add.rs_e->e_attrs; a; a=a->a_next) { - if ( a->a_desc->ad_type->sat_no_user_mod ) { + if ( !update && a->a_desc->ad_type->sat_no_user_mod ) { continue; } diff --git a/servers/slapd/back-ldap/modify.c b/servers/slapd/back-ldap/modify.c index edba521aad..2c54ceb7a1 100644 --- a/servers/slapd/back-ldap/modify.c +++ b/servers/slapd/back-ldap/modify.c @@ -46,6 +46,7 @@ ldap_back_modify( struct berval mdn = { 0, NULL }; ber_int_t msgid; dncookie dc; + int update; #ifdef LDAP_BACK_PROXY_AUTHZ LDAPControl **ctrls = NULL; #endif /* LDAP_BACK_PROXY_AUTHZ */ @@ -89,10 +90,12 @@ ldap_back_modify( #ifdef ENABLE_REWRITE dc.ctx = "modifyAttrDN"; #endif + + update = op->o_bd->be_update_ndn.bv_len; for (i=0, ml=op->oq_modify.rs_modlist; ml; ml=ml->sml_next) { int is_oc = 0; - if ( ml->sml_desc->ad_type->sat_no_user_mod ) { + if ( !update && ml->sml_desc->ad_type->sat_no_user_mod ) { continue; }