From: John Kohl Date: Wed, 18 Apr 1990 17:34:37 +0000 (+0000) Subject: add const to static function X-Git-Tag: krb5-1.0-alpha2~903 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f5c3d15aa046088d457d77cb62f7bdfc77b15425;p=krb5.git add const to static function git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@492 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/krb/rd_req_dec.c b/src/lib/krb5/krb/rd_req_dec.c index d340b29e3..34b97964f 100644 --- a/src/lib/krb5/krb/rd_req_dec.c +++ b/src/lib/krb5/krb/rd_req_dec.c @@ -53,7 +53,7 @@ static char rd_req_dec_c[] = returns system errors, encryption errors, replay errors */ -static krb5_error_code decrypt_authenticator PROTOTYPE((krb5_ap_req *, +static krb5_error_code decrypt_authenticator PROTOTYPE((const krb5_ap_req *, krb5_authenticator **)); static krb5_error_code copy_ticket PROTOTYPE((krb5_ticket *, krb5_ticket **)); @@ -173,7 +173,7 @@ krb5_tkt_authent *tktauthent; static krb5_error_code decrypt_authenticator(request, authpp) -krb5_ap_req *request; +const krb5_ap_req *request; krb5_authenticator **authpp; { krb5_authenticator *local_auth;