mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 01:58:33 -05:00
Remove lint
This commit is contained in:
parent
644d9000f9
commit
44e9209629
2 changed files with 2 additions and 2 deletions
|
|
@ -679,7 +679,7 @@ static Entry *accesslog_entry( Operation *op, int logop ) {
|
|||
op->o_tmpmemctx );
|
||||
|
||||
strcpy( nrdn.bv_val + STRLENOF(RDNEQ), ntimestamp.bv_val );
|
||||
nrdn.bv_len += ntimestamp.bv_len;
|
||||
nrdn.bv_len = STRLENOF(RDNEQ)+ntimestamp.bv_len;
|
||||
build_new_dn( &e->e_name, li->li_db->be_suffix, &rdn, NULL );
|
||||
build_new_dn( &e->e_nname, li->li_db->be_nsuffix, &nrdn, NULL );
|
||||
|
||||
|
|
|
|||
|
|
@ -490,7 +490,7 @@ static int unique_modrdn(
|
|||
op->o_req_dn.bv_val, op->orr_newrdn.bv_val, 0);
|
||||
|
||||
if ( !dnIsSuffix( &op->o_req_ndn, &ud->dn ) &&
|
||||
(!op->orr_nnewSup || !dnIsSuffix( &op->orr_nnewSup, &ud->dn )))
|
||||
(!op->orr_nnewSup || !dnIsSuffix( op->orr_nnewSup, &ud->dn )))
|
||||
return SLAP_CB_CONTINUE;
|
||||
|
||||
if(ldap_bv2rdn_x(&op->oq_modrdn.rs_newrdn, &newrdn,
|
||||
|
|
|
|||
Loading…
Reference in a new issue