diff options
Diffstat (limited to 'src/lib/krb5/ccache/file')
-rw-r--r-- | src/lib/krb5/ccache/file/ChangeLog | 4 | ||||
-rw-r--r-- | src/lib/krb5/ccache/file/fcc_reslv.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/krb5/ccache/file/ChangeLog b/src/lib/krb5/ccache/file/ChangeLog index a49e4b450..4ec1d6eab 100644 --- a/src/lib/krb5/ccache/file/ChangeLog +++ b/src/lib/krb5/ccache/file/ChangeLog @@ -1,3 +1,7 @@ + +Tue Aug 29 13:36:00 EDT 1995 Paul Park (pjpark@mit.edu) + * fcc_reslv.c - Set magic number in successfully resolved ccache. + Tue Jul 11 19:26:47 1995 Ezra Peisach <epeisach@kangaroo.mit.edu> * fcc-proto.h: Add prototype for krb5_fcc_read. Indicate that diff --git a/src/lib/krb5/ccache/file/fcc_reslv.c b/src/lib/krb5/ccache/file/fcc_reslv.c index c352c0c0b..4b6d381c9 100644 --- a/src/lib/krb5/ccache/file/fcc_reslv.c +++ b/src/lib/krb5/ccache/file/fcc_reslv.c @@ -85,6 +85,8 @@ krb5_fcc_resolve (context, id, residual) /* Set up the filename */ strcpy(((krb5_fcc_data *) lid->data)->filename, residual); + lid->magic = KV5M_CCACHE; + /* other routines will get errors on open, and callers must expect them, if cache is non-existent/unusable */ *id = lid; |