1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00

cookies: A feeble attempt to support 16-bit int.

There are probably other places where it doesn't work, but this one
caught my eye.
This commit is contained in:
Kalle Olavi Niemitalo 2006-05-30 09:37:31 +03:00 committed by Miciah Dashiel Butler Masters
parent 23a9a17827
commit 3e32131469

View File

@ -358,7 +358,7 @@ set_cookie(struct uri *uri, unsigned char *str)
if (expires) {
if (max_age > 0) {
int seconds = max_age*24*3600;
time_t seconds = ((time_t) max_age)*24*3600;
time_t deadline = time(NULL) + seconds;
if (expires > deadline) /* Over-aged cookie ? */