From c7752ba0b1bb0a1c946e7fd291de66689b955308 Mon Sep 17 00:00:00 2001 From: Mike Meffie Date: Fri, 27 Mar 2009 15:47:43 +0000 Subject: [PATCH] STABLE14-uss-kvno-warning-fix-20090327 LICENSE IPL10 FIXES 124220 suppress bogus kvno warning in uss (cherry picked from commit a523710780d54b27fc61db0fd1a561f789871046) --- src/uss/uss_vol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uss/uss_vol.c b/src/uss/uss_vol.c index 184917ad9..63110d2ea 100644 --- a/src/uss/uss_vol.c +++ b/src/uss/uss_vol.c @@ -180,7 +180,7 @@ InitThisModule(a_noAuthFlag, a_confDir, a_cellName) /* * We got a ticket, go for an authenticated connection. */ - if (ttoken.kvno >= 0 && ttoken.kvno <= 255) + if (ttoken.kvno >= 0 && ttoken.kvno <= 256) scIndex = 2; /*Kerberos */ else { fprintf(stderr, "%s: Funny kvno (%d) in ticket, proceeding\n", -- 2.39.5