aboutsummaryrefslogtreecommitdiff
path: root/src/include/CredentialsCache.h
diff options
context:
space:
mode:
authorAlexandra Ellwood <lxs@mit.edu>2007-09-10 21:30:37 +0000
committerAlexandra Ellwood <lxs@mit.edu>2007-09-10 21:30:37 +0000
commit58e67b6118a87b48b0edfb65250af6d7ab647ffb (patch)
treee9a8ce9421b27e85fd33cfaf3d44211eb59150a7 /src/include/CredentialsCache.h
parent4182dad8cdb97b033d4e97a7a213e65a8ca04088 (diff)
downloadkrb5-58e67b6118a87b48b0edfb65250af6d7ab647ffb.zip
krb5-58e67b6118a87b48b0edfb65250af6d7ab647ffb.tar.gz
krb5-58e67b6118a87b48b0edfb65250af6d7ab647ffb.tar.bz2
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
Diffstat (limited to 'src/include/CredentialsCache.h')
-rw-r--r--src/include/CredentialsCache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/CredentialsCache.h b/src/include/CredentialsCache.h
index 829a897..84783ae 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))