1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-07-11 22:39:16 -04:00
ports/net/silc-client/files/patch-irssi::src::core::network.c
Kirill Ponomarev 7751636391 - Fix build on AMD64
Noticed by:	kris via bento
Approved by:	maintainer
2004-01-26 06:45:28 +00:00

11 lines
380 B
C

--- 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