disable X-ORDERED 'VALUES' naming attributes by now

This commit is contained in:
Pierangelo Masarati 2006-08-26 17:28:07 +00:00
parent 828d55be4d
commit 9da24acb53

View File

@ -86,6 +86,13 @@ LDAPRDN_validate( LDAPRDN rdn )
ava->la_private = ( void * )ad;
}
/*
* Do not allow X-ORDERED 'VALUES' naming attributes
*/
if ( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL ) {
return LDAP_INVALID_SYNTAX;
}
/*
* Replace attr oid/name with the canonical name
*/
@ -379,6 +386,10 @@ LDAPRDN_rewrite( LDAPRDN rdn, unsigned flags, void *ctx )
return LDAP_INVALID_SYNTAX;
}
/* Do not allow X-ORDERED 'VALUES' naming attributes */
} else if( ad->ad_type->sat_flags & SLAP_AT_ORDERED_VAL ) {
return LDAP_INVALID_SYNTAX;
/* AVA is binary encoded, don't muck with it */
} else if( flags & SLAP_LDAPDN_PRETTY ) {
transf = ad->ad_type->sat_syntax->ssyn_pretty;