mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-31 02:49:28 -05:00
Fix contrib prototypes - add ConfigReply*
This commit is contained in:
parent
3e2f62ed0b
commit
2996fda0ee
3 changed files with 9 additions and 19 deletions
|
|
@ -109,7 +109,7 @@ denyop_func( Operation *op, SlapReply *rs )
|
||||||
|
|
||||||
static int
|
static int
|
||||||
denyop_over_init(
|
denyop_over_init(
|
||||||
BackendDB *be
|
BackendDB *be, ConfigReply *cr
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
slap_overinst *on = (slap_overinst *) be->bd_info;
|
slap_overinst *on = (slap_overinst *) be->bd_info;
|
||||||
|
|
@ -204,7 +204,7 @@ denyop_config(
|
||||||
|
|
||||||
static int
|
static int
|
||||||
denyop_destroy(
|
denyop_destroy(
|
||||||
BackendDB *be
|
BackendDB *be, ConfigReply *cr
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
slap_overinst *on = (slap_overinst *) be->bd_info;
|
slap_overinst *on = (slap_overinst *) be->bd_info;
|
||||||
|
|
|
||||||
|
|
@ -736,9 +736,7 @@ lastmod_response( Operation *op, SlapReply *rs )
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
lastmod_db_init(
|
lastmod_db_init( BackendDB *be, ConfigReply *cr )
|
||||||
BackendDB *be
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
slap_overinst *on = (slap_overinst *)be->bd_info;
|
slap_overinst *on = (slap_overinst *)be->bd_info;
|
||||||
lastmod_info_t *lmi;
|
lastmod_info_t *lmi;
|
||||||
|
|
@ -827,9 +825,7 @@ lastmod_db_config(
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
lastmod_db_open(
|
lastmod_db_open( BackendDB *be, ConfigReply *cr )
|
||||||
BackendDB *be
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
slap_overinst *on = (slap_overinst *) be->bd_info;
|
slap_overinst *on = (slap_overinst *) be->bd_info;
|
||||||
lastmod_info_t *lmi = (lastmod_info_t *)on->on_bi.bi_private;
|
lastmod_info_t *lmi = (lastmod_info_t *)on->on_bi.bi_private;
|
||||||
|
|
@ -904,9 +900,7 @@ lastmod_db_open(
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
lastmod_db_destroy(
|
lastmod_db_destroy( BackendDB *be, ConfigReply *cr )
|
||||||
BackendDB *be
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
slap_overinst *on = (slap_overinst *)be->bd_info;
|
slap_overinst *on = (slap_overinst *)be->bd_info;
|
||||||
lastmod_info_t *lmi = (lastmod_info_t *)on->on_bi.bi_private;
|
lastmod_info_t *lmi = (lastmod_info_t *)on->on_bi.bi_private;
|
||||||
|
|
|
||||||
|
|
@ -165,8 +165,7 @@ done:;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
trace_db_init(
|
trace_db_init( BackendDB *be, ConfigReply *cr )
|
||||||
BackendDB *be )
|
|
||||||
{
|
{
|
||||||
Log0( LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
|
Log0( LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
|
||||||
"trace DB_INIT\n" );
|
"trace DB_INIT\n" );
|
||||||
|
|
@ -190,8 +189,7 @@ trace_db_config(
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
trace_db_open(
|
trace_db_open( BackendDB *be, ConfigReply *cr )
|
||||||
BackendDB *be )
|
|
||||||
{
|
{
|
||||||
Log0( LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
|
Log0( LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
|
||||||
"trace DB_OPEN\n" );
|
"trace DB_OPEN\n" );
|
||||||
|
|
@ -200,8 +198,7 @@ trace_db_open(
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
trace_db_close(
|
trace_db_close( BackendDB *be, ConfigReply *cr )
|
||||||
BackendDB *be )
|
|
||||||
{
|
{
|
||||||
Log0( LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
|
Log0( LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
|
||||||
"trace DB_CLOSE\n" );
|
"trace DB_CLOSE\n" );
|
||||||
|
|
@ -210,8 +207,7 @@ trace_db_close(
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
trace_db_destroy(
|
trace_db_destroy( BackendDB *be, ConfigReply *cr )
|
||||||
BackendDB *be )
|
|
||||||
{
|
{
|
||||||
Log0( LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
|
Log0( LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
|
||||||
"trace DB_DESTROY\n" );
|
"trace DB_DESTROY\n" );
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue