From 58e67b6118a87b48b0edfb65250af6d7ab647ffb Mon Sep 17 00:00:00 2001 From: Alexandra Ellwood Date: Mon, 10 Sep 2007 21:30:37 +0000 Subject: Fixed macro for cc_ccache_unlock and updated documentation ticket: 4644 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19930 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/CredentialsCache.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include') diff --git a/src/include/CredentialsCache.h b/src/include/CredentialsCache.h index 829a8979d..84783ae51 100644 --- a/src/include/CredentialsCache.h +++ b/src/include/CredentialsCache.h @@ -1514,8 +1514,8 @@ CCACHE_API cc_int32 cc_initialize (cc_context_t *out_context, #define cc_ccache_lock(ccache, type, block) \ ((ccache) -> functions -> lock (ccache, type, block)) /*! Helper macro for cc_ccache_f unlock() */ -#define cc_ccache_unlock(ccache, unlock) \ - ((ccache) -> functions -> unlock (ccache, unlock)) +#define cc_ccache_unlock(ccache) \ + ((ccache) -> functions -> unlock (ccache)) /*! Helper macro for cc_ccache_f get_last_default_time() */ #define cc_ccache_get_last_default_time(ccache, last_default_time) \ ((ccache) -> functions -> get_last_default_time (ccache, last_default_time)) -- cgit