diff options
author | Matt Kraai <kraai@debian.org> | 2001-02-01 16:49:30 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-02-01 16:49:30 +0000 |
commit | 05e782ddd3dc58245c889529bb8aeeaddf24bf71 (patch) | |
tree | 8fbb91ca75358923724889a558c954cffdf10136 /networking/wget.c | |
parent | bd018b1babf0521b8e740abb6473133c1c4c35d2 (diff) | |
download | busybox-w32-05e782ddd3dc58245c889529bb8aeeaddf24bf71.tar.gz busybox-w32-05e782ddd3dc58245c889529bb8aeeaddf24bf71.tar.bz2 busybox-w32-05e782ddd3dc58245c889529bb8aeeaddf24bf71.zip |
Fix wget error message and add (and use) chomp library function.
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index 70f8d1b89..c134427e4 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -216,6 +216,7 @@ int wget_main(int argc, char **argv) | |||
216 | /*FALLTHRU*/ | 216 | /*FALLTHRU*/ |
217 | default: | 217 | default: |
218 | close_and_delete_outfile(output, fname_out, do_continue); | 218 | close_and_delete_outfile(output, fname_out, do_continue); |
219 | chomp(buf); | ||
219 | error_msg_and_die("server returned error %d: %s", atoi(s), buf); | 220 | error_msg_and_die("server returned error %d: %s", atoi(s), buf); |
220 | } | 221 | } |
221 | 222 | ||
@@ -532,7 +533,7 @@ progressmeter(int flag) | |||
532 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 533 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
533 | * SUCH DAMAGE. | 534 | * SUCH DAMAGE. |
534 | * | 535 | * |
535 | * $Id: wget.c,v 1.25 2001/01/31 19:00:21 kraai Exp $ | 536 | * $Id: wget.c,v 1.26 2001/02/01 16:49:30 kraai Exp $ |
536 | */ | 537 | */ |
537 | 538 | ||
538 | 539 | ||