Skip to content
Snippets Groups Projects
Commit a3414536 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add backend_check_referrals() framework.

parent d40495eb
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,7 @@ dnssrv_back_initialize(
bi->bi_extended = 0;
bi->bi_acl_group = 0;
bi->bi_chk_referrals = 0;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
......
......@@ -75,6 +75,7 @@ ldap_back_initialize(
bi->bi_extended = 0;
bi->bi_acl_group = ldap_back_group;
bi->bi_chk_referrals = 0;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
......
......@@ -67,6 +67,7 @@ ldbm_back_initialize(
bi->bi_entry_release_rw = ldbm_back_entry_release_rw;
bi->bi_acl_group = ldbm_back_group;
bi->bi_chk_referrals = 0;
/*
* hooks for slap tools
......
......@@ -54,6 +54,7 @@ passwd_back_initialize(
bi->bi_extended = 0;
bi->bi_acl_group = 0;
bi->bi_chk_referrals = 0;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
......
......@@ -97,6 +97,7 @@ perl_back_initialize(
bi->bi_extended = 0;
bi->bi_acl_group = 0;
bi->bi_chk_referrals = 0;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
......
......@@ -58,6 +58,7 @@ shell_back_initialize(
bi->bi_extended = 0;
bi->bi_acl_group = 0;
bi->bi_chk_referrals = 0;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
......
......@@ -66,6 +66,7 @@ int sql_back_initialize(
bi->bi_op_delete = backsql_delete;
bi->bi_acl_group = 0;
bi->bi_chk_referrals = 0;
bi->bi_connection_init = 0;
bi->bi_connection_destroy = 0;
......
......@@ -73,6 +73,7 @@ tcl_back_initialize (
bi->bi_op_abandon = tcl_back_abandon;
bi->bi_acl_group = 0;
bi->bi_chk_referrals = 0;
bi->bi_connection_init = 0;
bi->bi_connection_destroy = 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