mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 15:00:12 +00:00
bucoord-update-kvno-check-20090327
LICENSE IPL10 update kvno check in bucoord to match what it is elsewhere
This commit is contained in:
parent
4ced67ca98
commit
3fcbdab188
@ -847,7 +847,7 @@ vldbClientInit(int noAuthFlag, int localauth, char *cellName,
|
||||
afs_com_err(whoami, code, 0,
|
||||
"; Can't get AFS tokens - running unauthenticated");
|
||||
} else {
|
||||
if ((ttoken->kvno < 0) || (ttoken->kvno > 255))
|
||||
if ((ttoken->kvno < 0) || (ttoken->kvno > 256))
|
||||
afs_com_err(whoami, 0,
|
||||
"Funny kvno (%d) in ticket, proceeding",
|
||||
ttoken->kvno);
|
||||
@ -987,7 +987,7 @@ udbClientInit(int noAuthFlag, int localauth, char *cellName)
|
||||
afs_com_err(whoami, code,
|
||||
"; Can't get tokens - running unauthenticated");
|
||||
} else {
|
||||
if ((token.kvno < 0) || (token.kvno > 255))
|
||||
if ((token.kvno < 0) || (token.kvno > 256))
|
||||
afs_com_err(whoami, 0,
|
||||
"Unexpected kvno (%d) in ticket - proceeding",
|
||||
token.kvno);
|
||||
|
Loading…
Reference in New Issue
Block a user