1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

r4252: Comment clarification from Love Hörnquist Åstrand <lha@stacken.kth.se>.

Thanks,

Volker
This commit is contained in:
Volker Lendecke
2004-12-17 09:35:54 +00:00
committed by Gerald (Jerry) Carter
parent e717ff70c6
commit 207625c7ab

View File

@ -124,9 +124,13 @@ static BOOL afs_createtoken(const char *username, const char *cell,
p += 8;
/* Ticket lifetime. We fake everything here, so go as long as
possible. This is in 5-minute intervals, so 255 is 21 hours
and 15 minutes.*/
/* This is a kerberos 4 life time. The life time is expressed
* in units of 5 minute intervals up to 38400 seconds, after
* that a table is used up to lifetime 0xBF. Values between
* 0xC0 and 0xFF is undefined. 0xFF is defined to be the
* infinite time that never expire.
*
* So here we cheat and use the infinite time */
*p = 255;
p += 1;