diff --git a/servers/slapd/ad.c b/servers/slapd/ad.c index 0dacb6eb9d0515ea6ccd67a4cce37fda66b8669e..ad5ab5c82f7ecb64d182c917d6c4a253483b86ac 100644 --- a/servers/slapd/ad.c +++ b/servers/slapd/ad.c @@ -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; }