diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-05-03 13:43:13 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-03 23:19:56 +0200 |
commit | 28f38da5063d88fd8fc503cb56a8b6bafa1d953d (patch) | |
tree | 33509bfc0d980a70e1bbeff1171a99a36f5586d2 /include | |
parent | 0c56faf43dae17ff22d00bcb45fdabc654193df2 (diff) | |
download | curl-28f38da5063d88fd8fc503cb56a8b6bafa1d953d.tar.gz |
CURLOPT_CHUNK_BGN_FUNCTION.3: document the struct and time value
The time field in the curl_fileinfo struct will always be zero. No code
was ever implemented to actually convert the date string to a time_t.
Fixes #3829
Closes #3835
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 75f780cd7..d83b21798 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -290,7 +290,7 @@ typedef enum { struct curl_fileinfo { char *filename; curlfiletype filetype; - time_t time; + time_t time; /* always zero! */ unsigned int perm; int uid; int gid; |