Patch from Vladimir N. Oleynik to simplify wget file opening
authorEric Andersen <andersen@codepoet.org>
Wed, 31 Jan 2001 17:49:47 +0000 (17:49 -0000)
committerEric Andersen <andersen@codepoet.org>
Wed, 31 Jan 2001 17:49:47 +0000 (17:49 -0000)
using xfopen (which is what everything should be using).

networking/wget.c
wget.c

index 438ecba2e29c1aa9aa5a0d6ec89e741d2b5513aa..729c6fdc7d501767b78f0b9686b27af83a6867e1 100644 (file)
@@ -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 $
  */
 
 
diff --git a/wget.c b/wget.c
index 438ecba2e29c1aa9aa5a0d6ec89e741d2b5513aa..729c6fdc7d501767b78f0b9686b27af83a6867e1 100644 (file)
--- a/wget.c
+++ b/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 $
  */