diff options
author | Brian Somers <brian@FreeBSD.org> | 2000-08-08 00:12:18 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 2000-08-08 00:12:18 +0000 |
commit | 2e53a3e88906a9ee8e7317a4e8df01492dc04d74 (patch) | |
tree | 01f4902b8b86c13f378a00563b3ecf0f97eebcf3 /www/httptunnel/files/patch-ac | |
parent | Remove MASTER_SITES, no longer there. Remove myself as maintainer. (diff) |
3.0.1 -> 3.1:
Defeat stupid proxies that don't recognise no-cache
Update configure.in (again)
Fix some typos and other cosmetic stuff
Integrate all port patches back into the main source archive
Diffstat (limited to '')
-rw-r--r-- | www/httptunnel/files/patch-ac | 14 |
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) - { |