mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 10:09:43 -05:00
Add comment: old schema is OC less category (abstract, struct, aux).
This commit is contained in:
parent
61b509d881
commit
2f22b6bf0c
1 changed files with 5 additions and 0 deletions
|
|
@ -68,7 +68,12 @@ parse_oc_old(
|
|||
oc->oc_names = ch_calloc( 2, sizeof(char *) );
|
||||
oc->oc_names[0] = ch_strdup( argv[1] );
|
||||
oc->oc_names[1] = NULL;
|
||||
|
||||
if ( strcasecmp( oc->oc_names[0], "top" ) ) {
|
||||
/*
|
||||
* no way to distinguish "auxiliary" from "structural"
|
||||
* This may lead to future problems.
|
||||
*/
|
||||
oc->oc_kind = LDAP_SCHEMA_STRUCTURAL;
|
||||
}
|
||||
for ( i = 2; i < argc; i++ ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue