diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-11-22 13:50:17 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-11-22 13:50:17 +0000 |
commit | b5739b3a97318ee52b5069b305e43ea972621b0c (patch) | |
tree | 3aaee27a94da752bd37270ccfc04d78a34e58010 /lib/getinfo.c | |
parent | 86d4488cc7e8ccd3406b121066f8f6c8b7c7660d (diff) | |
download | curl-b5739b3a97318ee52b5069b305e43ea972621b0c.tar.gz |
document time fixes
Diffstat (limited to 'lib/getinfo.c')
-rw-r--r-- | lib/getinfo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/getinfo.c b/lib/getinfo.c index 786692c89..1b3e59767 100644 --- a/lib/getinfo.c +++ b/lib/getinfo.c @@ -84,6 +84,9 @@ CURLcode curl_getinfo(CURL *curl, CURLINFO info, ...) case CURLINFO_HTTP_CODE: *param_longp = data->progress.httpcode; break; + case CURLINFO_FILETIME: + *param_longp = data->progress.filetime; + break; case CURLINFO_HEADER_SIZE: *param_longp = data->header_size; break; |