summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-09-19 10:33:56 +0200
committerDaniel Stenberg <daniel@haxx.se>2019-09-20 08:07:58 +0200
commit2d5f76f22f0f9c805ccc9332b1abd757a8be3c99 (patch)
tree68657f85254c4e1e88dfcc4ebecd67fbfe21136d
parentb5a69b7a35b94b8dffbe0408a08e0411838e3c77 (diff)
downloadcurl-2d5f76f22f0f9c805ccc9332b1abd757a8be3c99.tar.gz
tool_operate: Expression 'config->resume_from' is always true
Fixes warning detected by PVS-Studio Fixes #4374
-rw-r--r--src/tool_operate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c
index 09dfc0c84..5364e8307 100644
--- a/src/tool_operate.c
+++ b/src/tool_operate.c
@@ -977,11 +977,11 @@ static CURLcode create_transfers(struct GlobalConfig *global,
#ifdef __VMS
/* open file for output, forcing VMS output format into stream
mode which is needed for stat() call above to always work. */
- FILE *file = fopen(outfile, config->resume_from?"ab":"wb",
+ FILE *file = fopen(outfile, "ab",
"ctx=stm", "rfm=stmlf", "rat=cr", "mrs=0");
#else
/* open file for output: */
- FILE *file = fopen(per->outfile, config->resume_from?"ab":"wb");
+ FILE *file = fopen(per->outfile, "ab");
#endif
if(!file) {
helpf(global->errors, "Can't open '%s'!\n", per->outfile);