Skip to content
Snippets Groups Projects
Commit 01744806 authored by Howard Chu's avatar Howard Chu
Browse files

ITS#4788 op->o_no_schema_check allows unknown attrs in slap_mods_check

parent 45fbb173
Branches
Tags
No related merge requests found
......@@ -554,6 +554,12 @@ int slap_mods_check(
/* convert to attribute description */
if ( ml->sml_desc == NULL ) {
rc = slap_bv2ad( &ml->sml_type, &ml->sml_desc, text );
if( rc != LDAP_SUCCESS ) {
if ( get_no_schema_check( op )) {
rc = slap_bv2undef_ad( &ml->sml_type, &ml->sml_desc,
text, 0 );
}
}
if( rc != LDAP_SUCCESS ) {
snprintf( textbuf, textlen, "%s: %s",
ml->sml_type.bv_val, *text );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment