From 7b72fc12000c878e11d5f0b245f83c0d71b29f58 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 16 Jun 2007 13:37:59 +0000 Subject: pscan: new applet (portscanner). ~1350 bytes. By Tito wget: lift 256 chars limitation on terminal width --- networking/wget.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'networking/wget.c') diff --git a/networking/wget.c b/networking/wget.c index 2c060d77d..fe669bbdd 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -693,16 +693,15 @@ progressmeter(int flag) struct timeval now, td, tvwait; off_t abbrevsize; int elapsed, ratio, barlength, i; - char buf[256]; if (flag == -1) { /* first call to progressmeter */ - gettimeofday(&start, (struct timezone *) 0); + gettimeofday(&start, NULL); lastupdate = start; lastsize = 0; totalsize = content_len + beg_range; /* as content_len changes.. */ } - gettimeofday(&now, (struct timezone *) 0); + gettimeofday(&now, NULL); ratio = 100; if (totalsize != 0 && !chunked) { /* long long helps to have working ETA even if !LFS */ @@ -713,7 +712,9 @@ progressmeter(int flag) fprintf(stderr, "\r%-20.20s%4d%% ", curfile, ratio); barlength = getttywidth() - 51; - if (barlength > 0 && barlength < sizeof(buf)) { + if (barlength > 0) { + /* god bless gcc for variable arrays :) */ + char buf[barlength+1]; i = barlength * ratio / 100; memset(buf, '*', i); memset(buf + i, ' ', barlength - i); -- cgit v1.2.3-55-g6feb