diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-02-03 22:28:41 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-02-03 22:28:41 +0000 |
commit | 71f3877f3a2e76b4c32f625438c36cd739884c06 (patch) | |
tree | a8e434ffaea24a463042f52d420d61ec9050d4fa /lib | |
parent | 83d135f990f8420c3777bf1a5650545b46207a28 (diff) |
- Hidemoto Nakada provided a small fix that makes it possible to get the
CURLINFO_CONTENT_LENGTH_DOWNLOAD size from file:// "transfers" with
CURLOPT_NOBODY set true.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/file.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/file.c b/lib/file.c index fb8b46a48..9aae1e4df 100644 --- a/lib/file.c +++ b/lib/file.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -496,6 +496,10 @@ static CURLcode file_do(struct connectdata *conn, bool *done) tm->tm_sec); result = Curl_client_write(conn, CLIENTWRITE_BOTH, buf, 0); } + /* if we fstat()ed the file, set the file size to make it available post- + transfer */ + if(fstated) + Curl_pgrsSetDownloadSize(data, expected_size); return result; } |