From: Theodore Tso Date: Tue, 2 Feb 1999 04:25:20 +0000 (+0000) Subject: k5-int.h: Add an entry to the os_context to store the default ccache X-Git-Tag: krb5-1.1-beta1~386 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b28c1bca371582d924b06d7a618b20c5cce5359c;p=krb5.git 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. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11139 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 + + * 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 * 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 *));