mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-16 11:57:39 -05:00
declare overlays_init()
This commit is contained in:
parent
8a9d026097
commit
9c5fe98a79
2 changed files with 8 additions and 1 deletions
|
|
@ -50,7 +50,9 @@ static struct {
|
|||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
int overlay_init() {
|
||||
int
|
||||
overlay_init(void)
|
||||
{
|
||||
int i, rc = 0;
|
||||
|
||||
for ( i=0; funcs[i].name; i++ ) {
|
||||
|
|
|
|||
|
|
@ -844,6 +844,11 @@ LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
|
|||
LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
|
||||
LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
|
||||
|
||||
/*
|
||||
* overlays.c
|
||||
*/
|
||||
LDAP_SLAPD_F (int) overlay_init( void );
|
||||
|
||||
/*
|
||||
* passwd.c
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue