From b0647ce691b69a5b21ecf2c174afe97ceb763632 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Fri, 8 Aug 1997 03:51:25 +0000 Subject: [PATCH] don't call clsoe in destroy, now that at the ccache level git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2789 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/fcache.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/krb5/fcache.c b/lib/krb5/fcache.c index 745ade3a0..131f97737 100644 --- a/lib/krb5/fcache.c +++ b/lib/krb5/fcache.c @@ -144,10 +144,9 @@ fcc_destroy(krb5_context context, krb5_ccache id) { char *f; - int ret; f = FILENAME(id); - ret = erase_file(f); + return erase_file(f); return fcc_close (context, id); }