Skip to content
Snippets Groups Projects
Commit 89b284ee authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

more on AttributeDescription error messages

parent d58055b7
No related branches found
No related tags found
No related merge requests found
......@@ -663,13 +663,13 @@ int slap_bv2undef_ad(
assert( ad != NULL );
if( bv == NULL || bv->bv_len == 0 ) {
*text = "empty attribute description";
*text = "empty AttributeDescription";
return LDAP_UNDEFINED_TYPE;
}
/* make sure description is IA5 */
if( ad_keystring( bv ) ) {
*text = "attribute description contains inappropriate characters";
*text = "AttributeDescription contains inappropriate characters";
return LDAP_UNDEFINED_TYPE;
}
......
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