aboutsummaryrefslogtreecommitdiffstats
path: root/www/httptunnel/files/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'www/httptunnel/files/patch-ac')
-rw-r--r--www/httptunnel/files/patch-ac14
1 files changed, 0 insertions, 14 deletions
diff --git a/www/httptunnel/files/patch-ac b/www/httptunnel/files/patch-ac
deleted file mode 100644
index d0c5db9e3584..000000000000
--- a/www/httptunnel/files/patch-ac
+++ /dev/null
@@ -1,14 +0,0 @@
---- htc.c.orig Thu Mar 16 00:27:51 2000
-+++ htc.c Thu Mar 16 00:43:21 2000
-@@ -408,7 +408,10 @@
-
- if (arg.forward_port != -1)
- {
-- s = server_socket (arg.forward_port, 0);
-+ struct in_addr addr;
-+
-+ addr.s_addr = INADDR_ANY;
-+ s = server_socket (addr, arg.forward_port, 0);
- log_debug ("server_socket (%d) = %d", arg.forward_port, s);
- if (s == -1)
- {