svn commit: trunk/busybox/networking
vda at busybox.net
vda at busybox.net
Thu Nov 23 13:10:24 UTC 2006
Author: vda
Date: 2006-11-23 05:10:23 -0800 (Thu, 23 Nov 2006)
New Revision: 16645
Log:
wget: -O - still outputs progressbar (to stderr)
Noticed dead code. -100 bytes.
Modified:
trunk/busybox/networking/wget.c
Changeset:
Modified: trunk/busybox/networking/wget.c
===================================================================
--- trunk/busybox/networking/wget.c 2006-11-23 12:57:49 UTC (rev 16644)
+++ trunk/busybox/networking/wget.c 2006-11-23 13:10:23 UTC (rev 16645)
@@ -210,17 +210,18 @@
curfile = bb_get_last_path_component(fname_out);
#endif
}
+ /* Impossible?
if ((opt & WGET_OPT_CONTINUE) && !fname_out)
- bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
+ bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)"); */
/*
* Determine where to start transfer.
*/
- if (!strcmp(fname_out, "-")) {
+ if (fname_out[0] == '-' && !fname_out[1]) {
output_fd = 1;
- opt |= WGET_OPT_QUIET;
opt &= ~WGET_OPT_CONTINUE;
- } else if (opt & WGET_OPT_CONTINUE) {
+ }
+ if (opt & WGET_OPT_CONTINUE) {
output_fd = open(fname_out, O_WRONLY);
if (output_fd >= 0) {
beg_range = xlseek(output_fd, 0, SEEK_END);
@@ -235,7 +236,7 @@
bb_lookup_host(&s_in, server.host);
s_in.sin_port = server.port;
if (!(opt & WGET_OPT_QUIET)) {
- printf("Connecting to %s[%s]:%d\n",
+ fprintf(stderr, "Connecting to %s[%s]:%d\n",
server.host, inet_ntoa(s_in.sin_addr), ntohs(server.port));
}
More information about the busybox-cvs
mailing list