From: Pierangelo Masarati Date: Tue, 13 Jul 2004 22:49:50 +0000 (+0000) Subject: more on AttributeDescription error messages X-Git-Tag: OPENDLAP_REL_ENG_2_2_MP~74 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=89b284eef5ede95e4b14b03efdbfbbc492c8c722;p=openldap more on AttributeDescription error messages --- diff --git a/servers/slapd/ad.c b/servers/slapd/ad.c index 0dacb6eb9d..ad5ab5c82f 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; }