summaryrefslogtreecommitdiff
path: root/lang/clisp/files/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'lang/clisp/files/patch-ab')
-rw-r--r--lang/clisp/files/patch-ab20
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);