diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-01-26 06:45:28 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-01-26 06:45:28 +0000 |
commit | 775163639198156c2b4c8ecf54b431b45d50fa08 (patch) | |
tree | bde7befb0ca662037844d96f0716f5a88ecb375b /net | |
parent | 1865de4a9bfa5be28b417be74a5e5b51a1b07049 (diff) | |
download | ports-775163639198156c2b4c8ecf54b431b45d50fa08.tar.gz ports-775163639198156c2b4c8ecf54b431b45d50fa08.zip |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/silc-client/files/patch-irssi::src::core::network.c | 11 |
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 |