summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-10-10 22:27:17 +0000
committerEzra Peisach <epeisach@mit.edu>2001-10-10 22:27:17 +0000
commita99b243bb91a3b77f5d836318a458197bc1cd0fa (patch)
treeb20fa899850bb97aa4af7f781bd794d534123436 /src
parentb8a3aeda14f06dfa8c18b0fe68acf938a9ada2c2 (diff)
downloadkrb5-a99b243bb91a3b77f5d836318a458197bc1cd0fa.tar.gz
krb5-a99b243bb91a3b77f5d836318a458197bc1cd0fa.tar.xz
krb5-a99b243bb91a3b77f5d836318a458197bc1cd0fa.zip
* 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
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 8c7f508df3..9e364dd4c4 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 68e1395e3c..6ce23aabde 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;