don't treat undefined oc as extensibleObject

This commit is contained in:
Kurt Zeilenga 1999-12-18 03:10:22 +00:00
parent c061aaa81c
commit 79b31f63c2

View File

@ -311,11 +311,13 @@ oc_check_allowed( char *type, struct berval **ocl )
} }
/* maybe the next oc allows it */ /* maybe the next oc allows it */
#ifdef OC_UNDEFINED_IMPLES_EXTENSIBLE
/* we don't know about the oc. assume it allows it */ /* we don't know about the oc. assume it allows it */
} else { } else {
if ( t != type ) if ( t != type )
ldap_memfree( t ); ldap_memfree( t );
return( 0 ); return( 0 );
#endif
} }
} }