]> git.sur5r.net Git - openldap/commitdiff
more on AttributeDescription error messages
authorPierangelo Masarati <ando@openldap.org>
Tue, 13 Jul 2004 22:49:50 +0000 (22:49 +0000)
committerPierangelo Masarati <ando@openldap.org>
Tue, 13 Jul 2004 22:49:50 +0000 (22:49 +0000)
servers/slapd/ad.c

index 0dacb6eb9d0515ea6ccd67a4cce37fda66b8669e..ad5ab5c82f7ecb64d182c917d6c4a253483b86ac 100644 (file)
@@ -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;
        }