diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-01 05:38:28 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-01 05:38:28 +0000 |
commit | 6e4c0192033a6f640606c58a3fde26adbe8a8af1 (patch) | |
tree | bc24d834dfd3c970d118159c999b52a2d65a4ea7 /lang/clisp/files/patch-ab | |
parent | Define DOCSDIR (diff) |
Update to 2.27.
PR: ports/30138
Submitted by: Jeff Brown <jabrown@ipn.caida.org> (MAINTAINER)
Since both of the two master sites were unreachable, I added
MASTER_SITE_SOURCEFORGE to the MASTER_SITES, which sites had the
distfile fortunately.
Diffstat (limited to 'lang/clisp/files/patch-ab')
-rw-r--r-- | lang/clisp/files/patch-ab | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lang/clisp/files/patch-ab b/lang/clisp/files/patch-ab deleted file mode 100644 index 6b3ea1d74f24..000000000000 --- a/lang/clisp/files/patch-ab +++ /dev/null @@ -1,20 +0,0 @@ ---- src/socket.d.orig Mon Mar 19 11:13:09 2001 -+++ src/socket.d Tue May 15 13:35:22 2001 -@@ -304,7 +304,7 @@ - #ifdef HAVE_INET_PTON - #ifdef HAVE_IPV6 - { -- var struct sockaddr_in6 inaddr; -+ var struct sockaddr_in6 inaddr = {0}; - if (inet_pton(AF_INET6,host,&inaddr.sin6_addr) > 0) { - inaddr.sin6_family = AF_INET6; - inaddr.sin6_port = htons(port); -@@ -313,7 +313,7 @@ - } - #endif - { -- var struct sockaddr_in inaddr; -+ var struct sockaddr_in inaddr = {0}; - if (inet_pton(AF_INET,host,&inaddr.sin_addr) > 0) { - inaddr.sin_family = AF_INET; - inaddr.sin_port = htons(port); |