aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-03-31 21:28:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-03-31 21:28:38 +0000
commit9d8b22d3de72d4e38d19e284d7656eea87c688b8 (patch)
tree62135167cf289ca1afce7565d4c87381894680ff /src/main.c
parent5796c7b1322375da0fa15620ca1a9c825df0ab01 (diff)
check the correct variable to want about --stderr failures properly
CID 18 by the coverity.com scan
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 5a953519d..72f28e3c9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1769,7 +1769,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
case 'v': /* --stderr */
if(strcmp(nextarg, "-")) {
FILE *newfile = fopen(nextarg, "wt");
- if(!config->errors)
+ if(!newfile)
warnf(config, "Failed to open %s!\n", nextarg);
else {
config->errors = newfile;