diff --git a/lib/gssapi/krb5/test_kcred.c b/lib/gssapi/krb5/test_kcred.c index f53ce783b..3cbba243f 100644 --- a/lib/gssapi/krb5/test_kcred.c +++ b/lib/gssapi/krb5/test_kcred.c @@ -90,7 +90,8 @@ copy_import(void) if (!equal) errx(1, "names not equal"); - if (lifetime1 != lifetime1) + /* FIXME: This check is racy! */ + if (lifetime1 != lifetime2) errx(1, "lifetime not equal"); if (usage1 != usage1) diff --git a/lib/gssapi/test_kcred.c b/lib/gssapi/test_kcred.c index a22d4ec9b..866ee78ec 100644 --- a/lib/gssapi/test_kcred.c +++ b/lib/gssapi/test_kcred.c @@ -102,6 +102,7 @@ copy_import(void) if (!equal) errx(1, "names not equal"); + /* FIXME: This check is racy! */ if (lifetime1 != lifetime2) errx(1, "lifetime not equal %lu != %lu", (unsigned long)lifetime1, (unsigned long)lifetime2); @@ -126,6 +127,7 @@ copy_import(void) if (!equal) errx(1, "names not equal"); + /* FIXME: This check is racy! */ if (lifetime1 != lifetime2) errx(1, "lifetime not equal %lu != %lu", (unsigned long)lifetime1, (unsigned long)lifetime2);