mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 16:19:35 -05:00
wrap bi_acl_group in #ifdef SLAPD_ACLGROUPS
This commit is contained in:
parent
1fda8f9382
commit
0fe0efeeac
4 changed files with 9 additions and 1 deletions
|
|
@ -35,7 +35,9 @@ passwd_back_initialize(
|
|||
bi->bi_op_delete = NULL;
|
||||
bi->bi_op_abandon = NULL;
|
||||
|
||||
#ifdef SLAPD_ACLGROUPS
|
||||
bi->bi_acl_group = NULL;
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -74,7 +74,9 @@ perl_back_initialize(
|
|||
bi->bi_op_delete = perl_back_delete;
|
||||
bi->bi_op_abandon = NULL;
|
||||
|
||||
#ifdef SLAPD_ACLGROUPS
|
||||
bi->bi_acl_group = NULL;
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,7 +35,9 @@ shell_back_initialize(
|
|||
bi->bi_op_delete = shell_back_delete;
|
||||
bi->bi_op_abandon = shell_back_abandon;
|
||||
|
||||
#ifdef SLAPD_ACLGROUPS
|
||||
bi->bi_acl_group = NULL;
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* tcl_init.c - tcl backend initialization
|
||||
*
|
||||
* $Id: tcl_init.c,v 1.3 1999/02/17 01:02:11 bcollins Exp $
|
||||
* $Id: tcl_init.c,v 1.4 1999/02/18 01:18:39 bcollins Exp $
|
||||
*
|
||||
* Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
|
||||
*
|
||||
|
|
@ -59,7 +59,9 @@ tcl_back_initialize (
|
|||
bi->bi_op_delete = tcl_back_delete;
|
||||
bi->bi_op_abandon = tcl_back_abandon;
|
||||
|
||||
#ifdef SLAPD_ACLGROUPS
|
||||
bi->bi_acl_group = NULL;
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue