diff options
| author | Greg Hudson <ghudson@mit.edu> | 2010-07-02 14:08:20 +0000 |
|---|---|---|
| committer | Greg Hudson <ghudson@mit.edu> | 2010-07-02 14:08:20 +0000 |
| commit | dd44875e0ac2e0b3c5d63192ccf01926ee827703 (patch) | |
| tree | dcb87ff4f7bf33eda4200400d1389dca6a8c75ac /src/include | |
| parent | 41c912b326a4b88b548a6897fd9efe11f71ebfad (diff) | |
| download | krb5-dd44875e0ac2e0b3c5d63192ccf01926ee827703.tar.gz krb5-dd44875e0ac2e0b3c5d63192ccf01926ee827703.tar.xz krb5-dd44875e0ac2e0b3c5d63192ccf01926ee827703.zip | |
Remove db_supported_realms and db_free_supported_realms from the DAL
table, and remove the corresponding libkdb5 interfaces (which don't
seem to have been in the library export table).
ticket: 6749
status: open
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24158 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/kdb.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/include/kdb.h b/src/include/kdb.h index 6248725a6..dd1e613be 100644 --- a/src/include/kdb.h +++ b/src/include/kdb.h @@ -447,10 +447,6 @@ krb5_error_code krb5_db_iterate ( krb5_context kcontext, char *match_entry, int (*func) (krb5_pointer, krb5_db_entry *), krb5_pointer func_arg ); -krb5_error_code krb5_supported_realms ( krb5_context kcontext, - char **realms ); -krb5_error_code krb5_free_supported_realms ( krb5_context kcontext, - char **realms ); krb5_error_code krb5_db_set_master_key_ext ( krb5_context kcontext, char *pwd, krb5_keyblock *key ); @@ -868,7 +864,7 @@ krb5_dbe_free_tl_data(krb5_context, krb5_tl_data *); * DAL. It is passed to init_library to allow KDB modules to detect when * they are being loaded by an incompatible version of the KDC. */ -#define KRB5_KDB_DAL_VERSION 20100701 +#define KRB5_KDB_DAL_VERSION 20100702 /* * A krb5_context can hold one database object. Modules should use @@ -1137,17 +1133,6 @@ typedef struct _kdb_vftabl { void (*db_free_policy)(krb5_context kcontext, osa_policy_ent_t val); /* - * Optional: Fill in *realms with an array of realm names. This function - * is not used or implemented. - */ - krb5_error_code (*db_supported_realms)(krb5_context kcontext, - char **realms); - - /* Optional: Free a realm list returned by db_supported_realms. */ - krb5_error_code (*db_free_supported_realms)(krb5_context kcontext, - char **realms); - - /* * Optional: Convert an error code returned by a module function (casted * from krb5_error_code to long) into a string. If this function is * implemented, libkdb5 will invoke it and call krb5_set_error_message with |
