aboutsummaryrefslogtreecommitdiff
path: root/src/tool_operate.c
diff options
context:
space:
mode:
authorKamil Dudka <kdudka@redhat.com>2015-03-30 13:56:30 +0200
committerKamil Dudka <kdudka@redhat.com>2015-04-08 09:43:08 +0200
commit261a0fedcf1545440190965311a1554d7695b6c0 (patch)
treefc1b18059e541956123dcc96b4fd3e46610d25db /src/tool_operate.c
parentf251417d85d232605ca86e9562a64500c67ccdee (diff)
src/tool_operate: create output file on successful download
... of an empty file Bug: https://github.com/bagder/curl/issues/183
Diffstat (limited to 'src/tool_operate.c')
-rw-r--r--src/tool_operate.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c
index 01a61f9a7..771e42da6 100644
--- a/src/tool_operate.c
+++ b/src/tool_operate.c
@@ -1388,6 +1388,13 @@ static CURLcode operate_do(struct GlobalConfig *global,
#endif
result = curl_easy_perform(curl);
+ if(!result && !outs.stream && !outs.bytes
+ /* we have received no data despite the transfer was successful
+ ==> force cration of an empty output file (if an output file
+ was specified) */
+ && !tool_create_output_file(&outs))
+ result = CURLE_WRITE_ERROR;
+
if(outs.is_cd_filename && outs.stream && !global->mute &&
outs.filename)
printf("curl: Saved to filename '%s'\n", outs.filename);