From: Ezra Peisach Date: Mon, 15 Sep 1997 19:24:20 +0000 (+0000) Subject: * fcc-proto.h, fcc_reslv.c (krb5_fcc_resolve): Incoming name X-Git-Tag: krb5-1.1-beta1~1032 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=54d1eae45a6e9a3af5388bc6d25f84c5409d1dbd;p=krb5.git * fcc-proto.h, fcc_reslv.c (krb5_fcc_resolve): Incoming name is const char * git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10193 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 + + * fcc-proto.h, fcc_reslv.c (krb5_fcc_resolve): Incoming name + is const char * + Sat Feb 22 22:25:09 1997 Richard Basch * 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;