diff options
author | Zhanna Tsitkov <tsitkova@mit.edu> | 2010-01-06 18:39:18 +0000 |
---|---|---|
committer | Zhanna Tsitkov <tsitkova@mit.edu> | 2010-01-06 18:39:18 +0000 |
commit | abc9b1618c68619b16840059846f1d3776dc90a4 (patch) | |
tree | bde0382e6431545f1c8e84abc0aeda4e36cda64f /src/lib/krb5/krb | |
parent | 69d083ca106bfeb4a5aae74cc563248658ab382a (diff) | |
download | krb5-abc9b1618c68619b16840059846f1d3776dc90a4.tar.gz krb5-abc9b1618c68619b16840059846f1d3776dc90a4.tar.xz krb5-abc9b1618c68619b16840059846f1d3776dc90a4.zip |
Since krb5int_validate_times is used only inside krb dir do not export it and move its prototype into int-proto.h
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23592 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/krb')
-rw-r--r-- | src/lib/krb5/krb/int-proto.h | 3 | ||||
-rw-r--r-- | src/lib/krb5/krb/valid_times.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/krb5/krb/int-proto.h b/src/lib/krb5/krb/int-proto.h index ac30a5222..4a8449d54 100644 --- a/src/lib/krb5/krb/int-proto.h +++ b/src/lib/krb5/krb/int-proto.h @@ -169,4 +169,7 @@ size_t krb5int_count_etypes(const krb5_enctype *list); krb5_error_code krb5int_copy_etypes(const krb5_enctype *old_list, krb5_enctype **new_list); +krb5_error_code +krb5int_validate_times(krb5_context, krb5_ticket_times *); + #endif /* KRB5_INT_FUNC_PROTO__ */ diff --git a/src/lib/krb5/krb/valid_times.c b/src/lib/krb5/krb/valid_times.c index f463e454b..ce99ff4da 100644 --- a/src/lib/krb5/krb/valid_times.c +++ b/src/lib/krb5/krb/valid_times.c @@ -29,6 +29,7 @@ */ #include "k5-int.h" +#include "int-proto.h" /* * This is an internal routine which validates the krb5_timestamps |