From c2f288612f99eb4b53ee78b37f32015ecd58f198 Mon Sep 17 00:00:00 2001 From: Chris Provenzano Date: Thu, 23 Feb 1995 13:27:12 +0000 Subject: [PATCH] * func-proto.h (krb5_get_credentials(), krb5_get_cred_from_kdc(), and krb5_sendauth()) replaced krb5_cred * IN/OUT arg with a krb5_cred * IN and a krb5_cred ** OUT arg. * func-proto.h (krb5_mk_req_extended()) Remove kdc_options flag arg and krb5_ccache arg. They are no longer necessary. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4989 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/krb5/ChangeLog | 8 ++++++++ src/include/krb5/func-proto.h | 9 +++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog index c7a557458..865c2b82f 100644 --- a/src/include/krb5/ChangeLog +++ b/src/include/krb5/ChangeLog @@ -1,3 +1,11 @@ +Wed Feb 22 17:39:46 1995 Chris Provenzano (proven@mit.edu) + + * func-proto.h (krb5_get_credentials(), krb5_get_cred_from_kdc(), + and krb5_sendauth()) replaced krb5_cred * IN/OUT arg with + a krb5_cred * IN and a krb5_cred ** OUT arg. + * func-proto.h (krb5_mk_req_extended()) Remove kdc_options flag arg + and krb5_ccache arg. They are no longer necessary. + Wed Feb 22 01:45:17 1995 Keith Vetter (keithv@fusion.com) * keytab.h: added windows INTERFACE keyword to prototypes diff --git a/src/include/krb5/func-proto.h b/src/include/krb5/func-proto.h index 666118463..92c7f2cec 100644 --- a/src/include/krb5/func-proto.h +++ b/src/include/krb5/func-proto.h @@ -67,6 +67,7 @@ krb5_error_code INTERFACE krb5_get_cred_from_kdc krb5_ccache, /* not const, as reading may save state */ krb5_creds *, + krb5_creds **, krb5_creds *** )); void INTERFACE krb5_free_tgt_creds PROTOTYPE((krb5_context, @@ -79,7 +80,8 @@ krb5_error_code INTERFACE krb5_get_credentials PROTOTYPE((krb5_context, const krb5_flags, krb5_ccache, - krb5_creds * )); + krb5_creds *, + krb5_creds **)); krb5_error_code INTERFACE krb5_get_for_creds PROTOTYPE((krb5_context, const krb5_cksumtype, @@ -99,10 +101,8 @@ krb5_error_code INTERFACE krb5_mk_req_extended PROTOTYPE((krb5_context, const krb5_flags, const krb5_checksum *, - const krb5_flags, krb5_int32, krb5_keyblock **, - krb5_ccache, krb5_creds *, krb5_authenticator *, krb5_data * )); @@ -582,7 +582,8 @@ krb5_error_code INTERFACE krb5_sendauth krb5_int32 *, krb5_keyblock **, krb5_error **, - krb5_ap_rep_enc_part **)); + krb5_ap_rep_enc_part **, + krb5_creds **)); krb5_error_code INTERFACE krb5_recvauth PROTOTYPE((krb5_context, krb5_pointer, -- 2.26.2