Change storage format for the last OLR download date in users.data to ensure

that the file will remain portable between the x86 and x86_64 versions.
This commit is contained in:
Andrew Leary
2017-01-28 07:45:44 -05:00
parent 11575f11c6
commit 48f64baecc
4 changed files with 21 additions and 14 deletions

View File

@@ -151,7 +151,7 @@ struct userrec {
char Password[Max_passlen+1];/* Plain password */
int Charset; /* Character set */
int OLRext; /* OLR extension counter */
time_t OLRlast; /* OLR last download */
char OLRlast[12]; /* OLR last download date */
};