Do not define or try to load cc_lock_request, which is
authorDanilo Almeida <dalmeida@mit.edu>
Thu, 18 May 2000 20:54:01 +0000 (20:54 +0000)
committerDanilo Almeida <dalmeida@mit.edu>
Thu, 18 May 2000 20:54:01 +0000 (20:54 +0000)
not actually used anywhere in the code.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12283 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ccache/ccapi/ChangeLog
src/lib/krb5/ccache/ccapi/winccld.h

index 48886a9aa12ffdb4a53da709a471d782480dd079..a97280d52342e97997179dc6dea4df4cabb37c94 100644 (file)
@@ -1,3 +1,8 @@
+2000-05-18  Danilo Almeida  <dalmeida@mit.edu>
+
+       * winccld.h: Do not define or try to load cc_lock_request, which is
+       not actually used anywhere in the code.
+
 2000-05-04  Miro Jurisic  <meeroh@mit.edu>
 
        * stdcc_util.c (dupCCtoK5, dupK5toCC): 
index c2ae4dcf4e7ed4953edbf8bf17bef9f6578a6077..e285d1faf66e99efe6c950e185f5c0d8e6208ff4 100644 (file)
@@ -85,7 +85,9 @@ DECL_FUNC_PTR(cc_get_name);
 DECL_FUNC_PTR(cc_set_principal);
 DECL_FUNC_PTR(cc_get_principal);
 DECL_FUNC_PTR(cc_get_cred_version);
+#if 0 /* Not used */
 DECL_FUNC_PTR(cc_lock_request);
+#endif
 DECL_FUNC_PTR(cc_store);
 DECL_FUNC_PTR(cc_remove_cred);
 #ifdef CC_API_VER2
@@ -117,7 +119,9 @@ FUNC_INFO krbcc_fi[] = {
     MAKE_FUNC_INFO(cc_set_principal),
     MAKE_FUNC_INFO(cc_get_principal),
     MAKE_FUNC_INFO(cc_get_cred_version),
+#if 0 /* Not used */
     MAKE_FUNC_INFO(cc_lock_request),
+#endif
     MAKE_FUNC_INFO(cc_store),
     MAKE_FUNC_INFO(cc_remove_cred),
 #ifdef CC_API_VER2
@@ -158,7 +162,9 @@ FUNC_INFO krbcc_fi[] = {
 #define cc_set_principal pcc_set_principal
 #define cc_get_principal pcc_get_principal
 #define cc_get_cred_version pcc_get_cred_version
+#if 0 /* Not used */
 #define cc_lock_request pcc_lock_request
+#endif
 #define cc_store pcc_store
 #define cc_remove_cred pcc_remove_cred
 #ifdef CC_API_VER2