summaryrefslogtreecommitdiff
path: root/chat/irssi/patches
diff options
context:
space:
mode:
Diffstat (limited to 'chat/irssi/patches')
-rw-r--r--chat/irssi/patches/patch-ae15
1 files changed, 0 insertions, 15 deletions
diff --git a/chat/irssi/patches/patch-ae b/chat/irssi/patches/patch-ae
deleted file mode 100644
index 980f8d607d0..00000000000
--- a/chat/irssi/patches/patch-ae
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ae,v 1.6 2009/07/27 12:59:44 obache Exp $
-
-Accept ENOTCONN as indicating socket is not ready for write.
-
---- src/core/network.c.orig 2005-11-19 23:45:08.000000000 +0100
-+++ src/core/network.c
-@@ -373,7 +373,7 @@ int net_transmit(GIOChannel *handle, con
-
- err = g_io_channel_write(handle, (char *) data, len, &ret);
- if (err == G_IO_ERROR_AGAIN ||
-- (err != 0 && (errno == EINTR || errno == EPIPE)))
-+ (err != 0 && (errno == EINTR || errno == EPIPE || errno == ENOTCONN)))
- return 0;
-
- return err == 0 ? (int)ret : -1;