Skip to content
Snippets Groups Projects
Commit d30ab4c1 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Additional system schema checks

parent 2d09d18d
No related branches found
No related tags found
No related merge requests found
......@@ -103,8 +103,9 @@ int slap_bv2ad(
desc.ad_cname = *bv;
name = bv->bv_val;
options = strchr(name, ';');
if (options != NULL)
if (options != NULL) {
desc.ad_cname.bv_len = options - name;
}
desc.ad_type = at_bvfind( &desc.ad_cname );
if( desc.ad_type == NULL ) {
*text = "attribute type undefined";
......@@ -115,6 +116,11 @@ int slap_bv2ad(
desc.ad_lang.bv_len = 0;
desc.ad_lang.bv_val = NULL;
if( is_at_operational( desc.ad_type ) && options != NULL ) {
*text = "operational attribute with options undefined";
return rtn;
}
/* parse options in place */
for( ; options != NULL; ) {
name = options+1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment