diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-02-20 13:46:53 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-02-20 13:46:53 +0000 |
commit | 721b05e3436884fc1e1b55f211e7fa4251d92a2a (patch) | |
tree | e803d7e8b88499be988b4d557ee57fc5c02e2512 /lib/cookie.h | |
parent | a333bddeeb6ce46f0a7d218d78fa700c881f2833 (diff) | |
download | curl-721b05e3436884fc1e1b55f211e7fa4251d92a2a.tar.gz |
Nico Baggus' VMS tweaks
Diffstat (limited to 'lib/cookie.h')
-rw-r--r-- | lib/cookie.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cookie.h b/lib/cookie.h index a00530bda..a7dd1df49 100644 --- a/lib/cookie.h +++ b/lib/cookie.h @@ -38,7 +38,7 @@ struct Cookie { char *value; /* name = <this> */ char *path; /* path = <this> */ char *domain; /* domain = <this> */ - time_t expires; /* expires = <this> */ + long expires; /* expires = <this> */ char *expirestr; /* the plain text version */ char field1; /* read from a cookie file, 1 => FALSE, 2=> TRUE */ |