summaryrefslogtreecommitdiff
path: root/user/kio/D11011-msghdr-iovec-struct.patch
diff options
context:
space:
mode:
Diffstat (limited to 'user/kio/D11011-msghdr-iovec-struct.patch')
-rw-r--r--user/kio/D11011-msghdr-iovec-struct.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/user/kio/D11011-msghdr-iovec-struct.patch b/user/kio/D11011-msghdr-iovec-struct.patch
deleted file mode 100644
index 641bb8629..000000000
--- a/user/kio/D11011-msghdr-iovec-struct.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/src/ioslaves/file/sharefd_p.h b/src/ioslaves/file/sharefd_p.h
---- a/src/ioslaves/file/sharefd_p.h
-+++ b/src/ioslaves/file/sharefd_p.h
-@@ -74,9 +74,16 @@
- FDMessageHeader()
- : io_buf{0}
- , cmsg_buf{0}
-- , io{io_buf, sizeof io_buf}
-- , msg{nullptr, 0, &io, 1, &cmsg_buf, sizeof cmsg_buf, 0}
- {
-+ memset(&io, 0, sizeof io);
-+ io.iov_base = io_buf;
-+ io.iov_len = sizeof io_buf;
-+
-+ memset(&msg, 0, sizeof msg);
-+ msg.msg_iov = &io;
-+ msg.msg_iovlen = 1;
-+ msg.msg_control = &cmsg_buf;
-+ msg.msg_controllen = sizeof cmsg_buf;
- }
-
- msghdr *message()
-