summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-04-18 17:34:37 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-04-18 17:34:37 +0000
commitf5c3d15aa046088d457d77cb62f7bdfc77b15425 (patch)
tree1036c6d0f5225800a0f67f5947d4917f1fca9806 /src
parent3850b5089f7de33ffbdbaf3de9b30c97dfc48285 (diff)
downloadkrb5-f5c3d15aa046088d457d77cb62f7bdfc77b15425.tar.gz
krb5-f5c3d15aa046088d457d77cb62f7bdfc77b15425.tar.xz
krb5-f5c3d15aa046088d457d77cb62f7bdfc77b15425.zip
add const to static function
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@492 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/krb/rd_req_dec.c4
1 files changed, 2 insertions, 2 deletions
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;