aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/daemon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/daemon.c')
-rw-r--r--src/daemon/daemon.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/daemon/daemon.c b/src/daemon/daemon.c
index 346abedf..02cdfe21 100644
--- a/src/daemon/daemon.c
+++ b/src/daemon/daemon.c
@@ -139,13 +139,12 @@ MHD_get_fdset (struct MHD_Daemon *daemon,
139 struct MHD_Connection *pos; 139 struct MHD_Connection *pos;
140 int fd; 140 int fd;
141 141
142 fd = daemon->socket_fd;
143 if ((daemon == NULL) || 142 if ((daemon == NULL) ||
144 (read_fd_set == NULL) || 143 (read_fd_set == NULL) ||
145 (write_fd_set == NULL) || 144 (write_fd_set == NULL) ||
146 (except_fd_set == NULL) || 145 (except_fd_set == NULL) ||
147 (max_fd == NULL) || 146 (max_fd == NULL) ||
148 (fd == -1) || 147 (-1 == (fd = daemon->socket_fd)) ||
149 (daemon->shutdown == MHD_YES) || 148 (daemon->shutdown == MHD_YES) ||
150 ((daemon->options & MHD_USE_THREAD_PER_CONNECTION) != 0)) 149 ((daemon->options & MHD_USE_THREAD_PER_CONNECTION) != 0))
151 return MHD_NO; 150 return MHD_NO;