accidentally applied wrong (old) patch, fixing up...
[oweals/busybox.git] / networking / wget.c
index 056d2c7fc7abed8acde087e5dd7d54c75693619d..5c3083c25d70791d239be525b4f2ddc58ca3108f 100644 (file)
@@ -235,9 +235,9 @@ int wget_main(int argc, char **argv)
         * and we want to connect to only one IP... */
        lsa = host2sockaddr(server.host, server.port);
        if (!(opt & WGET_OPT_QUIET)) {
-               fprintf(stderr, "Connecting to %s [%s]\n", server.host,
+               fprintf(stderr, "Connecting to %s (%s)\n", server.host,
                                xmalloc_sockaddr2dotted(&lsa->sa, lsa->len));
-               /* We leak xmalloc_sockaddr2dotted result */
+               /* We leak result of xmalloc_sockaddr2dotted */
        }
 
        if (use_proxy || !target.is_ftp) {
@@ -802,5 +802,4 @@ progressmeter(int flag)
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *     $Id: wget.c,v 1.75 2004/10/08 08:27:40 andersen Exp $
  */