summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1993-01-11 14:24:54 +0000
committerTheodore Tso <tytso@mit.edu>1993-01-11 14:24:54 +0000
commitd282068fba6fb539cc92ff45d3f737e95e52ab15 (patch)
treee239c09edda358134194d66198d8287f96d40ea3 /src/include
parent413bc00b4bb6bf2f69e563b4c4b0cf37fe809f93 (diff)
downloadkrb5-d282068fba6fb539cc92ff45d3f737e95e52ab15.tar.gz
krb5-d282068fba6fb539cc92ff45d3f737e95e52ab15.tar.xz
krb5-d282068fba6fb539cc92ff45d3f737e95e52ab15.zip
Added declaration for gen_new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2479 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/ccache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/krb5/ccache.h b/src/include/krb5/ccache.h
index 6e5c97ab27..3e8b24f7c4 100644
--- a/src/include/krb5/ccache.h
+++ b/src/include/krb5/ccache.h
@@ -74,6 +74,7 @@ typedef struct _krb5_cc_ops {
#define KRB5_TC_OPENCLOSE 0x00000001
#define krb5_cc_initialize(cache, principal) (*(cache)->ops->init)(cache, principal)
+#define krb5_cc_gen_new(cache) (*(cache)->ops->gen_new)(cache)
#define krb5_cc_destroy(cache) (*(cache)->ops->destroy)(cache)
#define krb5_cc_close(cache) (*(cache)->ops->close)(cache)
#define krb5_cc_store_cred(cache, creds) (*(cache)->ops->store)(cache, creds)