diff options
| author | Ezra Peisach <epeisach@mit.edu> | 2007-02-19 02:37:10 +0000 |
|---|---|---|
| committer | Ezra Peisach <epeisach@mit.edu> | 2007-02-19 02:37:10 +0000 |
| commit | a34576395e2c009c6ae9902cbdcf6acb84b20079 (patch) | |
| tree | 4a1f2e9448e613ef07a7efe3c1fa1ae9732b773f /src/include | |
| parent | 8d0dad364ce72219ee86c912746d9930602c9475 (diff) | |
| download | krb5-a34576395e2c009c6ae9902cbdcf6acb84b20079.tar.gz krb5-a34576395e2c009c6ae9902cbdcf6acb84b20079.tar.xz krb5-a34576395e2c009c6ae9902cbdcf6acb84b20079.zip | |
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
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/k5-int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/k5-int.h b/src/include/k5-int.h index d84449803f..2ff107c4b0 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 *, |
