summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/ipc-server.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index a9325a81..05041ec1 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -138,6 +138,7 @@ int ipc_handle_connection(int fd, uint32_t mask, void *data) {
138 int flags; 138 int flags;
139 if ((flags=fcntl(client_fd, F_GETFD)) == -1 || fcntl(client_fd, F_SETFD, flags|FD_CLOEXEC) == -1) { 139 if ((flags=fcntl(client_fd, F_GETFD)) == -1 || fcntl(client_fd, F_SETFD, flags|FD_CLOEXEC) == -1) {
140 sway_log_errno(L_INFO, "Unable to set CLOEXEC on IPC client socket"); 140 sway_log_errno(L_INFO, "Unable to set CLOEXEC on IPC client socket");
141 close(client_fd);
141 return 0; 142 return 0;
142 } 143 }
143 144