aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-01-26 06:45:28 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-01-26 06:45:28 +0000
commit775163639198156c2b4c8ecf54b431b45d50fa08 (patch)
treebde7befb0ca662037844d96f0716f5a88ecb375b /net
parent1865de4a9bfa5be28b417be74a5e5b51a1b07049 (diff)
downloadports-775163639198156c2b4c8ecf54b431b45d50fa08.tar.gz
ports-775163639198156c2b4c8ecf54b431b45d50fa08.zip
- Fix build on AMD64
Noticed by: kris via bento Approved by: maintainer
Notes
Notes: svn path=/head/; revision=99160
Diffstat (limited to 'net')
-rw-r--r--net/silc-client/files/patch-irssi::src::core::network.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/net/silc-client/files/patch-irssi::src::core::network.c b/net/silc-client/files/patch-irssi::src::core::network.c
new file mode 100644
index 000000000000..23b368b43755
--- /dev/null
+++ b/net/silc-client/files/patch-irssi::src::core::network.c
@@ -0,0 +1,11 @@
+--- irssi/src/core/network.c.orig Sun Jan 25 10:11:14 2004
++++ irssi/src/core/network.c Sun Jan 25 10:11:29 2004
+@@ -611,7 +611,7 @@
+ int net_hosterror_notfound(int error)
+ {
+ #ifdef HAVE_IPV6
+- return error != 1 && (error == EAI_NONAME || error == EAI_NODATA);
++ return error != 1 && (error == EAI_NONAME);
+ #else
+ return error == HOST_NOT_FOUND || error == NO_ADDRESS;
+ #endif