diff options
author | Greg Hudson <ghudson@mit.edu> | 2013-01-16 11:38:55 -0500 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2013-01-16 11:38:55 -0500 |
commit | 1078f5bf8049ab95322e7daf37c06f94623cdb74 (patch) | |
tree | a5cfb7f66c64129375ef2f949acca0391eaf3f1e /src/include | |
parent | e987546b4ff1689bb711cc46118ad9fc0a5613f6 (diff) | |
download | krb5-1078f5bf8049ab95322e7daf37c06f94623cdb74.tar.gz krb5-1078f5bf8049ab95322e7daf37c06f94623cdb74.tar.xz krb5-1078f5bf8049ab95322e7daf37c06f94623cdb74.zip |
Get rid of krb5_read_realm_params
Read realm parameters directly from the profile in the KDC's
init_realm(), getting rid of the intermediate krb5_realm_params
structure. Then get rid of krb5_realm_params and
krb5_read_realm_params, since nothing else uses it.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/adm_proto.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/include/adm_proto.h b/src/include/adm_proto.h index daca5a1162..3758f5ffe6 100644 --- a/src/include/adm_proto.h +++ b/src/include/adm_proto.h @@ -37,11 +37,6 @@ typedef struct _krb5_db_entry krb5_db_entry; /* Ditto for admin.h */ -#if !defined(__KADM5_ADMIN_H__) -struct ___krb5_realm_params; -typedef struct ___krb5_realm_params krb5_realm_params; -#endif /* KRB5_ADM_H__ */ - #ifndef KRB5_KDB5__ struct ___krb5_key_salt_tuple; typedef struct ___krb5_key_salt_tuple krb5_key_salt_tuple; @@ -76,10 +71,6 @@ krb5_error_code krb5_aprof_get_int32(krb5_pointer, const char **, krb5_boolean, krb5_int32 *); krb5_error_code krb5_aprof_finish(krb5_pointer); -krb5_error_code krb5_read_realm_params(krb5_context, char *, - krb5_realm_params **); -krb5_error_code krb5_free_realm_params(krb5_context, krb5_realm_params *); - /* str_conv.c */ krb5_error_code krb5_string_to_flags(char *, const char *, const char *, krb5_flags *); |