aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-01-31 08:08:57 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-01-31 08:08:57 +0000
commit24cb17f9be9d44358965e8723aac1ec7e1b122d2 (patch)
tree5ec458091c9a8900451a2653ca002483fcc33933 /networking
parent35db2281b79fac3bbc96199fc1cf7df8e83d4454 (diff)
downloadbusybox-w32-24cb17f9be9d44358965e8723aac1ec7e1b122d2.tar.gz
busybox-w32-24cb17f9be9d44358965e8723aac1ec7e1b122d2.tar.bz2
busybox-w32-24cb17f9be9d44358965e8723aac1ec7e1b122d2.zip
Fix http proxy use, bytes were swapped1_00_pre6
Diffstat (limited to 'networking')
-rw-r--r--networking/wget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c
index 59f78ac3b..313e2e6ff 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -320,7 +320,7 @@ int wget_main(int argc, char **argv)
320#endif 320#endif
321 fprintf(sfp, format, 321 fprintf(sfp, format,
322 target.is_ftp ? "f" : "ht", target.host, 322 target.is_ftp ? "f" : "ht", target.host,
323 target.port, target.path); 323 ntohs(target.port), target.path);
324 } else { 324 } else {
325 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path); 325 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
326 } 326 }
@@ -837,7 +837,7 @@ progressmeter(int flag)
837 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 837 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
838 * SUCH DAMAGE. 838 * SUCH DAMAGE.
839 * 839 *
840 * $Id: wget.c,v 1.67 2004/01/26 07:17:30 andersen Exp $ 840 * $Id: wget.c,v 1.68 2004/01/31 08:08:57 bug1 Exp $
841 */ 841 */
842 842
843 843