Skip to content
Snippets Groups Projects
Commit 0fe0efee authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

wrap bi_acl_group in #ifdef SLAPD_ACLGROUPS

parent 1fda8f93
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
/* 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;
}
......
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