When doing a 'wget -O -' turn on the quiet flag, lest the status bar
authorEric Andersen <andersen@codepoet.org>
Sun, 13 May 2001 00:55:54 +0000 (00:55 -0000)
committerEric Andersen <andersen@codepoet.org>
Sun, 13 May 2001 00:55:54 +0000 (00:55 -0000)
noise get mingled with the retrieved webpage.
 -Erik

networking/wget.c
wget.c

index cb96e65a388f50648ac38c895ab2a0b78b6701fd..dfe97f5c58402be12ae389f86c15b01af8acb52d 100644 (file)
@@ -234,6 +234,7 @@ int wget_main(int argc, char **argv)
         */
        if (strcmp(fname_out, "-") == 0) {
                output = stdout;
+               quiet_flag = TRUE;
        } else {
                output = xfopen(fname_out, (do_continue ? "a" : "w"));
        }
@@ -777,7 +778,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.37 2001/05/09 19:15:46 kraai Exp $
+ *     $Id: wget.c,v 1.38 2001/05/13 00:55:54 andersen Exp $
  */
 
 
diff --git a/wget.c b/wget.c
index cb96e65a388f50648ac38c895ab2a0b78b6701fd..dfe97f5c58402be12ae389f86c15b01af8acb52d 100644 (file)
--- a/wget.c
+++ b/wget.c
@@ -234,6 +234,7 @@ int wget_main(int argc, char **argv)
         */
        if (strcmp(fname_out, "-") == 0) {
                output = stdout;
+               quiet_flag = TRUE;
        } else {
                output = xfopen(fname_out, (do_continue ? "a" : "w"));
        }
@@ -777,7 +778,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.37 2001/05/09 19:15:46 kraai Exp $
+ *     $Id: wget.c,v 1.38 2001/05/13 00:55:54 andersen Exp $
  */