From d91182c5ae0466773d59894abc5bb29cfd2c80ad Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 11 Jun 2012 17:50:22 +0200 Subject: [PATCH] s4:heimdal: fix use of a non-existent word (existant) --- source4/heimdal/lib/krb5/fcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/heimdal/lib/krb5/fcache.c b/source4/heimdal/lib/krb5/fcache.c index 731f2934146..781d4f00407 100644 --- a/source4/heimdal/lib/krb5/fcache.c +++ b/source4/heimdal/lib/krb5/fcache.c @@ -925,7 +925,7 @@ fcc_get_cache_next(krb5_context context, krb5_cc_cursor cursor, krb5_ccache *id) return ret; fn = expandedfn; } - /* check if file exists, don't return a non existant "next" */ + /* check if file exists, don't return a non existent "next" */ if (strncasecmp(fn, "FILE:", 5) == 0) { struct stat sb; ret = stat(fn + 5, &sb); -- 2.11.4.GIT