diff options
author | Greg Hudson <ghudson@mit.edu> | 2008-12-24 18:48:00 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2008-12-24 18:48:00 +0000 |
commit | 9ad56f7a109d43aed52f17f98434105f6dcfd2cf (patch) | |
tree | 8a37856b3806d6ec3058e55897fa7756dcaf0d16 /src/include/krb5 | |
parent | 2fd916940dbe98a2e7c000480979d5a37ef72265 (diff) | |
download | krb5-9ad56f7a109d43aed52f17f98434105f6dcfd2cf.tar.gz krb5-9ad56f7a109d43aed52f17f98434105f6dcfd2cf.tar.xz krb5-9ad56f7a109d43aed52f17f98434105f6dcfd2cf.zip |
Clean up krb5_get_fallback_host_realm in two respects:
1. It isn't exported from libkrb5 (and no one seems to complain about
that). So give it a krb5int_ name and move its declaration to
k5-int.h. Also stop exporting it from the collected client lib.
2. It returned a list of realms, but its only caller assumes that the
list contains exactly one realm. So just make it return a single
realm.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21589 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5')
-rw-r--r-- | src/include/krb5/krb5.hin | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/include/krb5/krb5.hin b/src/include/krb5/krb5.hin index accde60fca..4848178d00 100644 --- a/src/include/krb5/krb5.hin +++ b/src/include/krb5/krb5.hin @@ -2099,10 +2099,6 @@ krb5_error_code KRB5_CALLCONV krb5_get_host_realm (krb5_context, const char *, char *** ); -krb5_error_code KRB5_CALLCONV krb5_get_fallback_host_realm - (krb5_context, - krb5_data *, - char *** ); krb5_error_code KRB5_CALLCONV krb5_free_host_realm (krb5_context, char * const * ); |