diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-02-12 11:44:48 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-02-12 11:45:39 +0100 |
commit | a38d99451f2bf8026ec51aee91662292e823c6a8 (patch) | |
tree | 312f02b7057b65dbaf42c796f814f43b064ef9ab /src/shutdownd | |
parent | d01efa07444e49aafd78e0aa822168da688d53f5 (diff) |
Revert "tree-wide: Always use recvmsg with MSG_CMSG_CLOEXEC"
This reverts commit d6d810fbf8071f8510450dbacd1d083f37603656.
It's apparently not OK to pass MSG_CMSG_CLOEXEC to recvmsg() of raw
sockets.
Diffstat (limited to 'src/shutdownd')
-rw-r--r-- | src/shutdownd/shutdownd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shutdownd/shutdownd.c b/src/shutdownd/shutdownd.c index 6eb522bcfc..826efbfeab 100644 --- a/src/shutdownd/shutdownd.c +++ b/src/shutdownd/shutdownd.c @@ -69,7 +69,7 @@ static int read_packet(int fd, union shutdown_buffer *_b) { assert(fd >= 0); assert(_b); - n = recvmsg(fd, &msghdr, MSG_DONTWAIT|MSG_CMSG_CLOEXEC); + n = recvmsg(fd, &msghdr, MSG_DONTWAIT); if (n <= 0) { if (n == 0) { log_error("Short read"); |