aboutsummaryrefslogtreecommitdiff
path: root/lib/getinfo.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-09-28 11:04:43 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-09-28 11:04:43 +0000
commite9aa07f660a3663281416fd5d391bcee78a117ec (patch)
tree08fbb9bd2d1d605bca7331266b50ee15da7c0613 /lib/getinfo.c
parent88e21894c7ccc38384004aa2aba2dd5123fc1f15 (diff)
filetime should be -1 if the remote time was unknown as 0 is actually a
valid time. we now store the filetime as a long to know for sure it can hold -1 (there exist some unsigned time_t cases)
Diffstat (limited to 'lib/getinfo.c')
-rw-r--r--lib/getinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/getinfo.c b/lib/getinfo.c
index 88a139e3a..6149073ac 100644
--- a/lib/getinfo.c
+++ b/lib/getinfo.c
@@ -46,7 +46,7 @@ CURLcode Curl_initinfo(struct SessionHandle *data)
info->httpcode = 0;
info->httpversion=0;
- info->filetime=0;
+ info->filetime=-1; /* -1 is an illegal time and thus means unknown */
return CURLE_OK;
}