summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/ccache/file/ChangeLog5
-rw-r--r--src/lib/krb5/ccache/file/fcc-proto.h2
-rw-r--r--src/lib/krb5/ccache/file/fcc_reslv.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/krb5/ccache/file/ChangeLog b/src/lib/krb5/ccache/file/ChangeLog
index af136d90c..4c5438641 100644
--- a/src/lib/krb5/ccache/file/ChangeLog
+++ b/src/lib/krb5/ccache/file/ChangeLog
@@ -1,3 +1,8 @@
+Mon Sep 15 15:15:33 1997 Ezra Peisach <epeisach@mit.edu>
+
+ * fcc-proto.h, fcc_reslv.c (krb5_fcc_resolve): Incoming name
+ is const char *
+
Sat Feb 22 22:25:09 1997 Richard Basch <basch@lehman.com>
* Makefile.in: Use some of the new library list build rules in
diff --git a/src/lib/krb5/ccache/file/fcc-proto.h b/src/lib/krb5/ccache/file/fcc-proto.h
index 61b5cf3c1..d05eeb73c 100644
--- a/src/lib/krb5/ccache/file/fcc-proto.h
+++ b/src/lib/krb5/ccache/file/fcc-proto.h
@@ -98,7 +98,7 @@ krb5_error_code krb5_fcc_read_authdatum
/* fcc_reslv.c */
KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_fcc_resolve
- KRB5_PROTOTYPE((krb5_context, krb5_ccache *id , char *residual ));
+ KRB5_PROTOTYPE((krb5_context, krb5_ccache *id , const char *residual ));
/* fcc_retrv.c */
KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_fcc_retrieve
diff --git a/src/lib/krb5/ccache/file/fcc_reslv.c b/src/lib/krb5/ccache/file/fcc_reslv.c
index 8ba7d78b0..5e3775ae4 100644
--- a/src/lib/krb5/ccache/file/fcc_reslv.c
+++ b/src/lib/krb5/ccache/file/fcc_reslv.c
@@ -53,7 +53,7 @@ krb5_error_code KRB5_CALLCONV
krb5_fcc_resolve (context, id, residual)
krb5_context context;
krb5_ccache *id;
- char *residual;
+ const char *residual;
{
krb5_ccache lid;