Skip to content
Snippets Groups Projects
Commit b56f7c72 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add no-op mru_schema_info()...

Not sure how best to populate matchingRuleUses...
parent 2f785804
No related branches found
No related tags found
No related merge requests found
......@@ -303,4 +303,9 @@ int mr_schema_info( Entry *e )
return 0;
}
int mru_schema_info( Entry *e )
{
return 0;
}
#endif
......@@ -591,6 +591,7 @@ LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
const char *associated ));
LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
/*
* mra.c
......
......@@ -88,6 +88,7 @@ schema_info( Entry **entry, const char **text )
if ( syn_schema_info( e )
|| mr_schema_info( e )
|| mru_schema_info( e )
|| at_schema_info( e )
|| oc_schema_info( e ) )
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment