diff options
author | Michael Adam <obnox@samba.org> | 2012-06-11 17:50:22 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-12 07:21:44 +0200 |
commit | d91182c5ae0466773d59894abc5bb29cfd2c80ad (patch) | |
tree | 994b09d90b44bdc938c71e08e3b56382805a7f0a /source4/heimdal | |
parent | 72a92b8c4cf59c5198edfa2e7d8f9719807f7ff3 (diff) | |
download | samba-d91182c5ae0466773d59894abc5bb29cfd2c80ad.tar.gz samba-d91182c5ae0466773d59894abc5bb29cfd2c80ad.tar.bz2 samba-d91182c5ae0466773d59894abc5bb29cfd2c80ad.zip |
s4:heimdal: fix use of a non-existent word (existant)
Diffstat (limited to 'source4/heimdal')
-rw-r--r-- | source4/heimdal/lib/krb5/fcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/heimdal/lib/krb5/fcache.c b/source4/heimdal/lib/krb5/fcache.c index 731f293414..781d4f0040 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); |