diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1998-01-24 22:08:44 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1998-01-24 22:08:44 +0000 |
commit | 16ef9cd73c3b3ab80799f366a670c4de83d6685d (patch) | |
tree | dcaf0bd5c02907130c86cc47a5117e8706e9f045 /www/webcopy | |
parent | Install header files. (diff) |
Do not bind local socket
Notes
Notes:
svn path=/head/; revision=9431
Diffstat (limited to 'www/webcopy')
-rw-r--r-- | www/webcopy/files/patch-ae | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www/webcopy/files/patch-ae b/www/webcopy/files/patch-ae new file mode 100644 index 000000000000..1166e1915329 --- /dev/null +++ b/www/webcopy/files/patch-ae @@ -0,0 +1,12 @@ +*** webcopy.src.bak Sat Jun 8 20:42:14 1996 +--- webcopy.src Sun Jan 25 01:04:21 1998 +*************** +*** 474,480 **** + } + socket(S,&PF_INET,&SOCK_STREAM,$local_prot) || die "$0: socket: $!\n"; #P4 + socket(S,PF_INET,SOCK_STREAM,$local_prot) || die "$0: socket: $!\n"; #P5 +- bind(S,$local_sock) || die "$0: bind: $!\n"; + connect(S,$remote_sock) || return(901,"$!",0); + $_=select(S); $|=1; select($_); + if ($verbose>3) { +--- 474,479 ---- |