From: Ezra Peisach Date: Wed, 10 Oct 2001 22:27:17 +0000 (+0000) Subject: * cc_file.c (krb5_fcc_read): Remove const from fourth argument to X-Git-Tag: krb5-1.3-alpha1~1046 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a99b243bb91a3b77f5d836318a458197bc1cd0fa;p=krb5.git * cc_file.c (krb5_fcc_read): Remove const from fourth argument to function to match prototype earlier in file. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13797 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/ccache/ChangeLog b/src/lib/krb5/ccache/ChangeLog index 8c7f508df..9e364dd4c 100644 --- a/src/lib/krb5/ccache/ChangeLog +++ b/src/lib/krb5/ccache/ChangeLog @@ -1,3 +1,8 @@ +2001-10-10 Ezra Peisach + + * cc_file.c (krb5_fcc_read): Remove const from fourth argument to + function to match prototype earlier in file. + 2001-10-09 Ken Raeburn * cc_file.c, cc_memory.c, cc_stdio.c, ser_cc.c: Make prototypes diff --git a/src/lib/krb5/ccache/cc_file.c b/src/lib/krb5/ccache/cc_file.c index 68e1395e3..6ce23aabd 100644 --- a/src/lib/krb5/ccache/cc_file.c +++ b/src/lib/krb5/ccache/cc_file.c @@ -305,7 +305,7 @@ krb5_fcc_read(context, id, buf, len) krb5_context context; krb5_ccache id; krb5_pointer buf; - const unsigned int len; + unsigned int len; { int ret;