summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1999-02-02 04:25:20 +0000
committerTheodore Tso <tytso@mit.edu>1999-02-02 04:25:20 +0000
commitb28c1bca371582d924b06d7a618b20c5cce5359c (patch)
tree4a93613c177f64698eef22cfb4805fd8ed59b4e8 /src/include
parente80e7d342e439d36d4cfea4d1e64cfe061b65355 (diff)
downloadkrb5-b28c1bca371582d924b06d7a618b20c5cce5359c.tar.gz
krb5-b28c1bca371582d924b06d7a618b20c5cce5359c.tar.xz
krb5-b28c1bca371582d924b06d7a618b20c5cce5359c.zip
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
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ChangeLog8
-rw-r--r--src/include/k5-int.h1
-rw-r--r--src/include/krb5.hin2
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 *));