summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/ccache/ccapi
diff options
context:
space:
mode:
authorDanilo Almeida <dalmeida@mit.edu>1999-06-08 06:19:22 +0000
committerDanilo Almeida <dalmeida@mit.edu>1999-06-08 06:19:22 +0000
commit3a6afac5dcd7fef5b6f684e8969d8709b000e451 (patch)
tree5d3fe3be5f0b47e414382b60fdcc1249c890ab80 /src/lib/krb5/ccache/ccapi
parent29c89a8edd5814106040e3b947bfdf638c47ac8b (diff)
downloadkrb5-3a6afac5dcd7fef5b6f684e8969d8709b000e451.tar.gz
krb5-3a6afac5dcd7fef5b6f684e8969d8709b000e451.tar.xz
krb5-3a6afac5dcd7fef5b6f684e8969d8709b000e451.zip
Remove references to cc_*_instance functions
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11495 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/ccache/ccapi')
-rw-r--r--src/lib/krb5/ccache/ccapi/ChangeLog4
-rw-r--r--src/lib/krb5/ccache/ccapi/winccld.h12
2 files changed, 4 insertions, 12 deletions
diff --git a/src/lib/krb5/ccache/ccapi/ChangeLog b/src/lib/krb5/ccache/ccapi/ChangeLog
index ff4afb173..c4042a5ac 100644
--- a/src/lib/krb5/ccache/ccapi/ChangeLog
+++ b/src/lib/krb5/ccache/ccapi/ChangeLog
@@ -1,3 +1,7 @@
+1999-06-08 Danilo Almeida <dalmeida@mit.edu>
+
+ * winccld.h: Remove references to cc_*_instance functions.
+
Thu May 13 18:01:58 1999 Theodore Y. Ts'o <tytso@mit.edu>
* winccld.c (krb5_win_ccdll_load): Register the FILE ccache type
diff --git a/src/lib/krb5/ccache/ccapi/winccld.h b/src/lib/krb5/ccache/ccapi/winccld.h
index 91d17f7ca..09a7ef5cd 100644
--- a/src/lib/krb5/ccache/ccapi/winccld.h
+++ b/src/lib/krb5/ccache/ccapi/winccld.h
@@ -25,8 +25,6 @@ typedef cc_int32 (*FP_cc_get_name)(apiCB*, const ccache_p*, char**);
typedef cc_int32 (*FP_cc_set_principal)(apiCB*, const ccache_p*,
const enum cc_cred_vers, const char*);
typedef cc_int32 (*FP_cc_get_principal)(apiCB*, ccache_p*, char**);
-typedef cc_int32 (*FP_cc_set_instance)(apiCB*, const char*);
-typedef cc_int32 (*FP_cc_get_instance)(apiCB*, char**);
typedef cc_int32 (*FP_cc_get_cred_version)(apiCB*, const ccache_p*,
enum cc_cred_vers*);
typedef cc_int32 (*FP_cc_lock_request)(apiCB*, const ccache_p*,
@@ -37,7 +35,6 @@ typedef cc_int32 (*FP_cc_remove_cred)(apiCB*, const ccache_p*,
typedef cc_int32 (*FP_cc_seq_fetch_creds)(apiCB*, const ccache_p*,
cred_union**, ccache_cit**);
typedef cc_int32 (*FP_cc_free_principal)(apiCB*, char**);
-typedef cc_int32 (*FP_cc_free_instance)(apiCB*, char**);
typedef cc_int32 (*FP_cc_free_name)(apiCB*, char** name);
typedef cc_int32 (*FP_cc_free_creds)(apiCB*, cred_union** pCred);
@@ -67,15 +64,12 @@ DECL_FUNC_PTR(cc_free_NC_info);
DECL_FUNC_PTR(cc_get_name);
DECL_FUNC_PTR(cc_set_principal);
DECL_FUNC_PTR(cc_get_principal);
-DECL_FUNC_PTR(cc_set_instance);
-DECL_FUNC_PTR(cc_get_instance);
DECL_FUNC_PTR(cc_get_cred_version);
DECL_FUNC_PTR(cc_lock_request);
DECL_FUNC_PTR(cc_store);
DECL_FUNC_PTR(cc_remove_cred);
DECL_FUNC_PTR(cc_seq_fetch_creds);
DECL_FUNC_PTR(cc_free_principal);
-DECL_FUNC_PTR(cc_free_instance);
DECL_FUNC_PTR(cc_free_name);
DECL_FUNC_PTR(cc_free_creds);
@@ -94,15 +88,12 @@ FUNC_INFO krbcc_fi[] = {
MAKE_FUNC_INFO(cc_get_name),
MAKE_FUNC_INFO(cc_set_principal),
MAKE_FUNC_INFO(cc_get_principal),
- MAKE_FUNC_INFO(cc_set_instance),
- MAKE_FUNC_INFO(cc_get_instance),
MAKE_FUNC_INFO(cc_get_cred_version),
MAKE_FUNC_INFO(cc_lock_request),
MAKE_FUNC_INFO(cc_store),
MAKE_FUNC_INFO(cc_remove_cred),
MAKE_FUNC_INFO(cc_seq_fetch_creds),
MAKE_FUNC_INFO(cc_free_principal),
- MAKE_FUNC_INFO(cc_free_instance),
MAKE_FUNC_INFO(cc_free_name),
MAKE_FUNC_INFO(cc_free_creds),
END_FUNC_INFO
@@ -124,15 +115,12 @@ FUNC_INFO krbcc_fi[] = {
#define cc_get_name pcc_get_name
#define cc_set_principal pcc_set_principal
#define cc_get_principal pcc_get_principal
-#define cc_set_instance pcc_set_instance
-#define cc_get_instance pcc_get_instance
#define cc_get_cred_version pcc_get_cred_version
#define cc_lock_request pcc_lock_request
#define cc_store pcc_store
#define cc_remove_cred pcc_remove_cred
#define cc_seq_fetch_creds pcc_seq_fetch_creds
#define cc_free_principal pcc_free_principal
-#define cc_free_instance pcc_free_instance
#define cc_free_name pcc_free_name
#define cc_free_creds pcc_free_creds
#endif