From a48f260a7ac2d329a0f627742a28c47536c4c009 Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Thu, 31 Aug 2000 21:28:28 +0000 Subject: Fix some more diagnostics --- www/httptunnel/files/patch-ab | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 www/httptunnel/files/patch-ab (limited to 'www/httptunnel/files/patch-ab') diff --git a/www/httptunnel/files/patch-ab b/www/httptunnel/files/patch-ab new file mode 100644 index 000000000000..4951e768a37c --- /dev/null +++ b/www/httptunnel/files/patch-ab @@ -0,0 +1,32 @@ +--- tunnel.c.orig Thu Aug 31 22:22:58 2000 ++++ tunnel.c Thu Aug 31 22:24:27 2000 +@@ -358,10 +358,10 @@ + if (tunnel->out_fd == -1) + { + log_error ("tunnel_out_connect: do_connect (%d.%d.%d.%d:%u) error: %s", +- tunnel->address.sin_addr.s_addr >> 24, +- (tunnel->address.sin_addr.s_addr >> 16) & 0xff, +- (tunnel->address.sin_addr.s_addr >> 8) & 0xff, +- tunnel->address.sin_addr.s_addr & 0xff, ++ ntohl(tunnel->address.sin_addr.s_addr) >> 24, ++ (ntohl(tunnel->address.sin_addr.s_addr) >> 16) & 0xff, ++ (ntohl(tunnel->address.sin_addr.s_addr) >> 8) & 0xff, ++ ntohl(tunnel->address.sin_addr.s_addr) & 0xff, + ntohs (tunnel->address.sin_port), + strerror (errno)); + return -1; +@@ -1120,10 +1120,10 @@ + } + + log_notice ("connection from %d.%d.%d.%d:%u", +- addr.sin_addr.s_addr >> 24, +- (addr.sin_addr.s_addr >> 16) & 0xff, +- (addr.sin_addr.s_addr >> 8) & 0xff, +- addr.sin_addr.s_addr & 0xff, ++ ntohl(addr.sin_addr.s_addr) >> 24, ++ (ntohl(addr.sin_addr.s_addr) >> 16) & 0xff, ++ (ntohl(addr.sin_addr.s_addr) >> 8) & 0xff, ++ ntohl(addr.sin_addr.s_addr) & 0xff, + ntohs (addr.sin_port)); + + m = http_parse_request (s, &request); -- cgit v1.2.3