ports/irc/irssi/files/patch-eai_nodata
Vanilla I. Shu d549dd20de - Unbreak on -currnet.
- Put USE_OPENSSL before <bsd.port.pre.mk>
- make configure happy
- make pre-configure target non-fatal. This makes interrupting and resuming
  the configure stage possible.

PR:		ports/62476
Submitted by:	Ulrich Spoerlein <q@uni.de>
2004-02-08 17:02:11 +00:00

11 lines
368 B
Text

--- src/core/network.c.orig Sat Feb 7 12:48:34 2004
+++ src/core/network.c Sat Feb 7 12:49:40 2004
@@ -607,7 +607,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