Skip to content
Snippets Groups Projects
Commit a1ccf169 authored by Luke Howard's avatar Luke Howard
Browse files

Filled in Cyrus SASL authz/storage callbacks for all backends

(callbacks not yet implemented though).
parent 736b8d0a
No related branches found
No related tags found
No related merge requests found
......@@ -102,6 +102,12 @@ bdb2_back_initialize(
bi->bi_tool_index_change = bdb2_tool_index_change;
bi->bi_tool_sync = bdb2_tool_sync;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
bi->bi_sasl_getsecret = 0;
bi->bi_sasl_putsecret = 0;
#endif /* HAVE_CYRUS_SASL */
bi->bi_connection_init = 0;
bi->bi_connection_destroy = 0;
......
......@@ -76,6 +76,12 @@ ldap_back_initialize(
bi->bi_acl_group = 0;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
bi->bi_sasl_getsecret = 0;
bi->bi_sasl_putsecret = 0;
#endif /* HAVE_CYRUS_SASL */
bi->bi_connection_init = 0;
bi->bi_connection_destroy = ldap_back_conn_destroy;
......
......@@ -83,10 +83,10 @@ ldbm_back_initialize(
bi->bi_tool_sync = ldbm_tool_sync;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0; /* ldbm_sasl_authorize; */
bi->bi_sasl_getsecret = 0; /* ldbm_sasl_getsecret; */
bi->bi_sasl_putsecret = 0; /* ldbm_sasl_putsecret; */
#endif
bi->bi_sasl_authorize = 0;
bi->bi_sasl_getsecret = 0;
bi->bi_sasl_putsecret = 0;
#endif /* HAVE_CYRUS_SASL */
bi->bi_connection_init = 0;
bi->bi_connection_destroy = 0;
......
......@@ -55,6 +55,12 @@ passwd_back_initialize(
bi->bi_acl_group = 0;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
bi->bi_sasl_getsecret = 0;
bi->bi_sasl_putsecret = 0;
#endif /* HAVE_CYRUS_SASL */
bi->bi_connection_init = 0;
bi->bi_connection_destroy = 0;
......
......@@ -100,6 +100,12 @@ perl_back_initialize(
bi->bi_acl_group = 0;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
bi->bi_sasl_getsecret = 0;
bi->bi_sasl_putsecret = 0;
#endif /* HAVE_CYRUS_SASL */
bi->bi_connection_init = 0;
bi->bi_connection_destroy = 0;
......
......@@ -55,6 +55,12 @@ shell_back_initialize(
bi->bi_acl_group = 0;
#ifdef HAVE_CYRUS_SASL
bi->bi_sasl_authorize = 0;
bi->bi_sasl_getsecret = 0;
bi->bi_sasl_putsecret = 0;
#endif /* HAVE_CYRUS_SASL */
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