diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-31 17:49:47 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-31 17:49:47 +0000 |
commit | 79e898ac0e46d658f7edcbcb48e5bd0d578b6380 (patch) | |
tree | a90bab57b13080eb61e775bc72547ed72227370c /networking/wget.c | |
parent | 65225df2dc656d3c038b22e82b2865c1db333cb2 (diff) |
Patch from Vladimir N. Oleynik to simplify wget file opening
using xfopen (which is what everything should be using).
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/wget.c b/networking/wget.c index 438ecba2e..729c6fdc7 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -167,8 +167,7 @@ int wget_main(int argc, char **argv) * Open the output file stream. */ if (fname_out != (char *)1) { - if ( (output=fopen(fname_out, (do_continue ? "a" : "w"))) == NULL) - perror_msg_and_die("fopen(%s)", fname_out); + output = xfopen( fname_out, (do_continue ? "a" : "w") ); } else { output = stdout; } @@ -533,7 +532,7 @@ progressmeter(int flag) * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: wget.c,v 1.23 2001/01/27 08:24:38 andersen Exp $ + * $Id: wget.c,v 1.24 2001/01/31 17:49:47 andersen Exp $ */ |