diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/krb5/ccache/cc_file.c | 4 | ||||
| -rw-r--r-- | src/lib/krb5/ccache/cc_memory.c | 2 | ||||
| -rw-r--r-- | src/lib/krb5/ccache/cc_mslsa.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/krb5/ccache/cc_file.c b/src/lib/krb5/ccache/cc_file.c index a9b45647a..4fe6221b8 100644 --- a/src/lib/krb5/ccache/cc_file.c +++ b/src/lib/krb5/ccache/cc_file.c @@ -2374,7 +2374,7 @@ const krb5_cc_ops krb5_fcc_ops = { krb5_fcc_start_seq_get, krb5_fcc_next_cred, krb5_fcc_end_seq_get, - krb5_fcc_remove, + krb5_fcc_remove_cred, krb5_fcc_set_flags, }; @@ -2434,6 +2434,6 @@ const krb5_cc_ops krb5_cc_file_ops = { krb5_fcc_start_seq_get, krb5_fcc_next_cred, krb5_fcc_end_seq_get, - krb5_fcc_remove, + krb5_fcc_remove_cred, krb5_fcc_set_flags, }; diff --git a/src/lib/krb5/ccache/cc_memory.c b/src/lib/krb5/ccache/cc_memory.c index 8477e3d45..c3aeb1e8b 100644 --- a/src/lib/krb5/ccache/cc_memory.c +++ b/src/lib/krb5/ccache/cc_memory.c @@ -567,6 +567,6 @@ const krb5_cc_ops krb5_mcc_ops = { krb5_mcc_start_seq_get, krb5_mcc_next_cred, krb5_mcc_end_seq_get, - krb5_mcc_remove, + krb5_mcc_remove_cred, krb5_mcc_set_flags, }; diff --git a/src/lib/krb5/ccache/cc_mslsa.c b/src/lib/krb5/ccache/cc_mslsa.c index 3ceda5a09..d0b7ac34d 100644 --- a/src/lib/krb5/ccache/cc_mslsa.c +++ b/src/lib/krb5/ccache/cc_mslsa.c @@ -1393,7 +1393,7 @@ krb5_lcc_store(krb5_context context, krb5_ccache id, krb5_creds *creds) * KRB5_CC_READONLY: */ static krb5_error_code KRB5_CALLCONV -krb5_fcc_remove_cred(krb5_context context, krb5_ccache cache, krb5_flags flags, +krb5_lcc_remove_cred(krb5_context context, krb5_ccache cache, krb5_flags flags, krb5_creds *creds) { return KRB5_CC_READONLY; @@ -1425,7 +1425,7 @@ const krb5_cc_ops krb5_lcc_ops = { krb5_lcc_start_seq_get, krb5_lcc_next_cred, krb5_lcc_end_seq_get, - krb5_lcc_remove, + krb5_lcc_remove_cred, krb5_lcc_set_flags }; #endif /* _WIN32 */
\ No newline at end of file |
