diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/ChangeLog | 8 | ||||
| -rw-r--r-- | src/include/k5-int.h | 1 | ||||
| -rw-r--r-- | src/include/krb5.hin | 2 |
3 files changed, 11 insertions, 0 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 8f724e7a0..14d3fcd06 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,11 @@ +1999-02-01 Theodore Ts'o <tytso@rsts-11.mit.edu> + + * k5-int.h: Add an entry to the os_context to store the default + ccache name. + + * krb5.hin (krb5_cc_set_default_name): Add function prototype + which sets the defulat ccache name. + Thu Jan 21 15:23:28 1999 Theodore Y. Ts'o <tytso@mit.edu> * krb5.hin: Fix realm iterator prototypes so that they use diff --git a/src/include/k5-int.h b/src/include/k5-int.h index fa8824c49..85e86a830 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -754,6 +754,7 @@ typedef struct _krb5_os_context { krb5_int32 time_offset; krb5_int32 usec_offset; krb5_int32 os_flags; + char * default_ccname; } *krb5_os_context; /* diff --git a/src/include/krb5.hin b/src/include/krb5.hin index 630e8d213..a36c567e2 100644 --- a/src/include/krb5.hin +++ b/src/include/krb5.hin @@ -1692,6 +1692,8 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_cc_resolve krb5_ccache FAR * )); KRB5_DLLIMP const char FAR * KRB5_CALLCONV krb5_cc_default_name KRB5_PROTOTYPE((krb5_context)); +KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_cc_set_default_name + KRB5_PROTOTYPE((krb5_context, const char *)); KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_cc_default KRB5_PROTOTYPE((krb5_context, krb5_ccache FAR *)); |
