wrap bi_acl_group in #ifdef SLAPD_ACLGROUPS

This commit is contained in:
Hallvard Furuseth 1999-02-20 08:53:48 +00:00
parent 1fda8f9382
commit 0fe0efeeac
4 changed files with 9 additions and 1 deletions

View file

@ -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;
}

View file

@ -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;
}

View file

@ -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;
}

View file

@ -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;
}