From: Michael Adam Date: Mon, 11 Jun 2012 15:50:22 +0000 (+0200) Subject: s4:heimdal: fix use of a non-existent word (existant) X-Git-Tag: samba-4.0.0beta2~212 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d91182c5ae0466773d59894abc5bb29cfd2c80ad;p=thirdparty%2Fsamba.git s4:heimdal: fix use of a non-existent word (existant) --- 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);