1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

s4:heimdal: fix use of a non-existent word (existant)

This commit is contained in:
Michael Adam 2012-06-11 17:50:22 +02:00
parent 72a92b8c4c
commit d91182c5ae

View File

@ -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);