From 89b284eef5ede95e4b14b03efdbfbbc492c8c722 Mon Sep 17 00:00:00 2001 From: Pierangelo Masarati Date: Tue, 13 Jul 2004 22:49:50 +0000 Subject: [PATCH] more on AttributeDescription error messages --- servers/slapd/ad.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5