From: Theodore Tso Date: Wed, 1 Dec 1993 22:25:24 +0000 (+0000) Subject: Declare statically used procedure (previously and incorrectly defined in .h X-Git-Tag: krb5-1.0-beta3~119 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f25f8ffb5b6c96f7ea87f515216ee080a675b77f;p=krb5.git Declare statically used procedure (previously and incorrectly defined in .h files) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3059 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/krb/mk_req_ext.c b/src/lib/krb5/krb/mk_req_ext.c index ecbc895ae..ee09be767 100644 --- a/src/lib/krb5/krb/mk_req_ext.c +++ b/src/lib/krb5/krb/mk_req_ext.c @@ -71,6 +71,11 @@ static char rcsid_mk_req_ext_c[] = returns system errors */ +static krb5_error_code +krb5_generate_authenticator PROTOTYPE(( krb5_authenticator *, krb5_principal, + const krb5_checksum *, krb5_keyblock *, + krb5_int32, krb5_authdata ** )); + krb5_error_code krb5_mk_req_extended(ap_req_options, checksum, kdc_options, sequence, newkey, ccache, creds, authentp, outbuf) diff --git a/src/lib/krb5/krb/preauth.c b/src/lib/krb5/krb/preauth.c index 43db41812..5425402e8 100644 --- a/src/lib/krb5/krb/preauth.c +++ b/src/lib/krb5/krb/preauth.c @@ -71,7 +71,10 @@ static krb5_preauth_ops preauth_systems[] = { }, { -1,} }; - + +static krb5_error_code find_preauthenticator + PROTOTYPE((int type, krb5_preauth_ops **Preauth_proc)); + /* * krb5_obtain_padata is a glue routine which when passed in * a preauthentication type, client principal, and src_addr, returns