Write progress meter to stderr instead of stdout
authorRandolph Chung <tausq@debian.org>
Thu, 7 Dec 2000 03:55:35 +0000 (03:55 -0000)
committerRandolph Chung <tausq@debian.org>
Thu, 7 Dec 2000 03:55:35 +0000 (03:55 -0000)
Makefile
networking/wget.c
wget.c

index 345c3c35fc13599fe27a85e8a73d7d64178167ea..5faac87d64027e0eb991c19299c41c49b4ace678 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ DOSTATIC = false
 # Leave this set to `false' for production use.
 # eg: `make DODEBUG=true tests'
 # Do not enable this for production builds...
-DODEBUG = false
+DODEBUG = true
 
 # This enables compiling with dmalloc ( http://dmalloc.com/ )
 # which is an excellent public domain mem leak and malloc problem
index 4a593488353317c5af521068e881b7cc8576c4b3..b43bbad6238c484a3a14b23444ae87e90af9168a 100644 (file)
@@ -424,7 +424,7 @@ progressmeter(int flag)
                snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
                         "%02d:%02d ETA", i / 60, i % 60);
        }
-       write(fileno(stdout), buf, strlen(buf));
+       write(fileno(stderr), buf, strlen(buf));
 
        if (flag == -1) {
                struct sigaction sa;
@@ -475,7 +475,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.8 2000/12/07 03:53:47 tausq Exp $
+ *     $Id: wget.c,v 1.9 2000/12/07 03:55:35 tausq Exp $
  */
 
 
diff --git a/wget.c b/wget.c
index 4a593488353317c5af521068e881b7cc8576c4b3..b43bbad6238c484a3a14b23444ae87e90af9168a 100644 (file)
--- a/wget.c
+++ b/wget.c
@@ -424,7 +424,7 @@ progressmeter(int flag)
                snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
                         "%02d:%02d ETA", i / 60, i % 60);
        }
-       write(fileno(stdout), buf, strlen(buf));
+       write(fileno(stderr), buf, strlen(buf));
 
        if (flag == -1) {
                struct sigaction sa;
@@ -475,7 +475,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.8 2000/12/07 03:53:47 tausq Exp $
+ *     $Id: wget.c,v 1.9 2000/12/07 03:55:35 tausq Exp $
  */