Filled in Cyrus SASL authz/storage callbacks for all backends

(callbacks not yet implemented though).
This commit is contained in:
Luke Howard 2000-01-02 05:42:14 +00:00
parent 736b8d0a24
commit a1ccf169da
6 changed files with 34 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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