diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-12-07 17:08:10 +0100 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-12-07 17:08:10 +0100 |
commit | 64802d3642385580f50f78b3b9efc633e894afc3 (patch) | |
tree | ac5fc55cbe24e03aebdb174d36ad50f91274bdd2 | |
parent | 0d415c9a1c82a44e6030fa311c0392d8c389a94d (diff) | |
download | midipix_build-64802d3642385580f50f78b3b9efc633e894afc3.tar.bz2 midipix_build-64802d3642385580f50f78b3b9efc633e894afc3.tar.xz |
irssi: remove #ifndef block around getsockopt(2) call.
-rw-r--r-- | patches/irssi-0.8.18.local.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/patches/irssi-0.8.18.local.patch b/patches/irssi-0.8.18.local.patch index 8c72336e..c8b8e778 100644 --- a/patches/irssi-0.8.18.local.patch +++ b/patches/irssi-0.8.18.local.patch @@ -45,22 +45,6 @@ } return TRUE; } ---- irssi-0.8.18/src/core/network.c.orig 2016-02-08 21:20:37.000000000 +0100 -+++ irssi-0.8.18/src/core/network.c 2016-06-17 16:34:16.870746400 +0200 -@@ -572,9 +572,13 @@ - int data; - socklen_t len = sizeof(data); - -+#ifndef __midipix__ - if (getsockopt(g_io_channel_unix_get_fd(handle), - SOL_SOCKET, SO_ERROR, (void *) &data, &len) == -1) - return -1; -+#else -+ data = 0; -+#endif - - return data; - } --- irssi-0.8.18/src/core/pidwait.c.orig 2014-09-02 11:13:51.000000000 +0200 +++ irssi-0.8.18/src/core/pidwait.c 2016-06-19 00:20:33.327763200 +0200 @@ -39,8 +39,10 @@ |