diff options
Diffstat (limited to 'src/shutdownd/shutdownd.c')
-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"); |