Patch from Leif Lindholm (slightly modified by me), to fix http
authorGlenn L McGrath <bug1@ihug.co.nz>
Sat, 17 Jan 2004 23:07:14 +0000 (23:07 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Sat, 17 Jan 2004 23:07:14 +0000 (23:07 -0000)
redirection.
Example of incorrect behaviour was the following url, busybox wget didnt
get redirected to the busybox url as it should.
http://freshmeat.net/redir/busybox/953/url_homepage/www.busybox.net

networking/wget.c

index c92771e18d38389d47776b508c1c0696ab4dcdac..3fd1df124f749c187daf7d283c734437c0f73cac 100644 (file)
@@ -404,6 +404,9 @@ read_response:
                                                        server.host = target.host;
                                                        server.port = target.port;
                                                }
+                                               bb_lookup_host(&s_in, server.host);
+                                               s_in.sin_port = server.port;
+                                               break;
                                        }
                                }
                        }
@@ -834,7 +837,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.65 2004/01/17 05:03:31 bug1 Exp $
+ *     $Id: wget.c,v 1.66 2004/01/17 23:07:14 bug1 Exp $
  */