diff options
author | John Kohl <jtkohl@mit.edu> | 1990-01-18 14:17:23 +0000 |
---|---|---|
committer | John Kohl <jtkohl@mit.edu> | 1990-01-18 14:17:23 +0000 |
commit | 2f539b366a4e2cd14da7ff488132de06fcf2e269 (patch) | |
tree | cd0301b536bd1727f515a5f5667c7bae1468e0bc /src | |
parent | c45e0b333c760fad221b6afb6cc66e4c2006a492 (diff) | |
download | krb5-2f539b366a4e2cd14da7ff488132de06fcf2e269.tar.gz krb5-2f539b366a4e2cd14da7ff488132de06fcf2e269.tar.xz krb5-2f539b366a4e2cd14da7ff488132de06fcf2e269.zip |
change credentials to creds
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@119 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/include/krb5/ccache.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/krb5/ccache.h b/src/include/krb5/ccache.h index a7661b4a3..c5db07568 100644 --- a/src/include/krb5/ccache.h +++ b/src/include/krb5/ccache.h @@ -31,16 +31,16 @@ typedef struct _krb5_cc_ops { int (*init) PROTOTYPE((krb5_ccache, krb5_principal)); int (*destroy) PROTOTYPE((krb5_ccache)); int (*close) PROTOTYPE((krb5_ccache)); - int (*store) PROTOTYPE((krb5_ccache, krb5_credentials *)); + int (*store) PROTOTYPE((krb5_ccache, krb5_creds *)); int (*retrieve) PROTOTYPE((krb5_ccache, krb5_flags, - krb5_credentials *, krb5_credentials *)); + krb5_creds *, krb5_creds *)); int (*get_princ) PROTOTYPE((krb5_ccache, krb5_principal *)); int (*get_first) PROTOTYPE((krb5_ccache, krb5_cc_cursor *)); int (*get_next) PROTOTYPE((krb5_ccache, krb5_cc_cursor *, - krb5_credentials *)); + krb5_creds *)); int (*end_get) PROTOTYPE((krb5_ccache, krb5_cc_cursor *)); int (*remove_cred) PROTOTYPE((krb5_ccache, krb5_flags, - krb5_credentials *)); + krb5_creds *)); int (*set_flags) PROTOTYPE((krb5_ccache, krb5_cflags)); } krb5_cc_ops; |