summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/ccache/ChangeLog5
-rw-r--r--src/lib/krb5/ccache/cc_file.c2
2 files changed, 6 insertions, 1 deletions
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 <epeisach@mit.edu>
+
+ * cc_file.c (krb5_fcc_read): Remove const from fourth argument to
+ function to match prototype earlier in file.
+
2001-10-09 Ken Raeburn <raeburn@mit.edu>
* 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;