From a34576395e2c009c6ae9902cbdcf6acb84b20079 Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Mon, 19 Feb 2007 02:37:10 +0000 Subject: Ensure consistancy between prototypes and functions I am using an older compiler that is complaining that prototypes do not match the functions they reference. The issue is that a number of prototypes are using "const int foo" while the function is "int foo". From a caller sense it makes no difference - but the compiler is correct they are different. All is now consistant. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19169 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/k5-int.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include') diff --git a/src/include/k5-int.h b/src/include/k5-int.h index d84449803..2ff107c4b 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -1686,7 +1686,7 @@ krb5_error_code krb5_encrypt_tkt_part krb5_error_code krb5_encode_kdc_rep (krb5_context, - const krb5_msgtype, + krb5_msgtype, const krb5_enc_kdc_rep_part *, int using_subkey, const krb5_keyblock *, -- cgit