Fix http proxy use, bytes were swapped
diff --git a/networking/wget.c b/networking/wget.c
index 59f78ac..313e2e6 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -320,7 +320,7 @@
 #endif
 				fprintf(sfp, format,
 					target.is_ftp ? "f" : "ht", target.host,
-					target.port, target.path);
+					ntohs(target.port), target.path);
 			} else {
 				fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
 			}
@@ -837,7 +837,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *	$Id: wget.c,v 1.67 2004/01/26 07:17:30 andersen Exp $
+ *	$Id: wget.c,v 1.68 2004/01/31 08:08:57 bug1 Exp $
  */