aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/ccache/file/fcc_store.c
diff options
context:
space:
mode:
authorKeith Vetter <keithv@fusion.com>1995-03-22 05:12:02 +0000
committerKeith Vetter <keithv@fusion.com>1995-03-22 05:12:02 +0000
commit323be20b1464912ee495a6f17417611c364252fc (patch)
tree16bbf668a3647983872027efbc2ad17fbaa1cc61 /src/lib/krb5/ccache/file/fcc_store.c
parentaa1a6511bff4b78de6f61972fe08318ec8878179 (diff)
downloadkrb5-323be20b1464912ee495a6f17417611c364252fc.zip
krb5-323be20b1464912ee495a6f17417611c364252fc.tar.gz
krb5-323be20b1464912ee495a6f17417611c364252fc.tar.bz2
Bug fixes in ccache/file for the PC: files need to be opened in binary mode,
unitialized variable and changed some clever code that depends upon 32 bit integers. Also, added hooks, ala k4, that notify the world when the cache changes. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5184 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/ccache/file/fcc_store.c')
-rw-r--r--src/lib/krb5/ccache/file/fcc_store.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/krb5/ccache/file/fcc_store.c b/src/lib/krb5/ccache/file/fcc_store.c
index 12eef45..fec27ae 100644
--- a/src/lib/krb5/ccache/file/fcc_store.c
+++ b/src/lib/krb5/ccache/file/fcc_store.c
@@ -82,6 +82,7 @@ krb5_fcc_store(context, id, creds)
lose:
MAYBE_CLOSE(context, id, ret);
+ krb5_change_cache ();
return ret;
#undef TCHECK
}