From: Ken Raeburn Date: Wed, 17 Jan 2007 00:01:56 +0000 (+0000) Subject: * t_cccursor.c (do_chk): Reverse sense of test of do_chk_one return value X-Git-Tag: krb5-1.7-alpha1~1358 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e43fff1d176baff761e8154056c6240d7ab885c5;p=krb5.git * t_cccursor.c (do_chk): Reverse sense of test of do_chk_one return value git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19064 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/ccache/t_cccursor.c b/src/lib/krb5/ccache/t_cccursor.c index 68e615329..e65beadd0 100644 --- a/src/lib/krb5/ccache/t_cccursor.c +++ b/src/lib/krb5/ccache/t_cccursor.c @@ -186,7 +186,7 @@ do_chk( printf("cursor: %s:%s\n", prefix, name); if (i < nmax) { - if (!do_chk_one(prefix, name, &chklist[i])) { + if (do_chk_one(prefix, name, &chklist[i])) { *good = 0; } }