hdb: Make maximum ticket lifetime and renew time signed integers
This allows for negative lifetimes to be encoded, and fits in better with our use elsewhere of time_t, which in POSIX is a signed integer type. Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
This commit is contained in:
committed by
Nico Williams
parent
55287b56bc
commit
96a5c0b82a
+2
-2
@@ -233,8 +233,8 @@ HDB_entry ::= SEQUENCE {
|
||||
valid-start[5] KerberosTime OPTIONAL,
|
||||
valid-end[6] KerberosTime OPTIONAL,
|
||||
pw-end[7] KerberosTime OPTIONAL,
|
||||
max-life[8] INTEGER (0..4294967295) OPTIONAL,
|
||||
max-renew[9] INTEGER (0..4294967295) OPTIONAL,
|
||||
max-life[8] INTEGER (-2147483648..2147483647) OPTIONAL,
|
||||
max-renew[9] INTEGER (-2147483648..2147483647) OPTIONAL,
|
||||
flags[10] HDBFlags,
|
||||
etypes[11] HDB-EncTypeList OPTIONAL,
|
||||
generation[12] GENERATION OPTIONAL,
|
||||
|
||||
Reference in New Issue
Block a user