summaryrefslogtreecommitdiff
path: root/www/httptunnel/files/patch-ac
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2001-05-21 10:00:49 +0000
committerBrian Somers <brian@FreeBSD.org>2001-05-21 10:00:49 +0000
commit725829d7b015e56ccaff6ab9f9e4221279227075 (patch)
treeded9525d80e30cb0b089d4a18962cb5f1e4ebe48 /www/httptunnel/files/patch-ac
parentUpgrade to 2.1.a11 (diff)
Upgrade to version 3.3
Diffstat (limited to '')
-rw-r--r--www/httptunnel/files/patch-ac17
1 files changed, 0 insertions, 17 deletions
diff --git a/www/httptunnel/files/patch-ac b/www/httptunnel/files/patch-ac
deleted file mode 100644
index fdcde075a537..000000000000
--- a/www/httptunnel/files/patch-ac
+++ /dev/null
@@ -1,17 +0,0 @@
---- common.c.orig Thu Aug 31 22:24:49 2000
-+++ common.c Thu Aug 31 22:26:01 2000
-@@ -179,10 +179,10 @@
- memcpy(&address->sin_addr.s_addr, ent->h_addr, (unsigned)ent->h_length);
- ip = ntohl (address->sin_addr.s_addr);
- log_annoying ("set_address: host = %d.%d.%d.%d",
-- ip >> 24,
-- (ip >> 16) & 0xff,
-- (ip >> 8) & 0xff,
-- ip & 0xff);
-+ ntohl(ip) >> 24,
-+ (ntohl(ip) >> 16) & 0xff,
-+ (ntohl(ip) >> 8) & 0xff,
-+ ntohl(ip) & 0xff);
- }
-
- return 0;