aboutsummaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/connection.c b/src/daemon/connection.c
index d3a98745..eef9e9e8 100644
--- a/src/daemon/connection.c
+++ b/src/daemon/connection.c
@@ -297,7 +297,7 @@ MHD_connection_get_fdset (struct MHD_Connection *connection,
297 connection->read_buffer_size = 297 connection->read_buffer_size =
298 connection->read_buffer_size * 2 + MHD_BUF_INC_SIZE; 298 connection->read_buffer_size * 2 + MHD_BUF_INC_SIZE;
299 FD_SET (fd, read_fd_set); 299 FD_SET (fd, read_fd_set);
300 if (fd > *max_fd) 300 if (fd > *max_fd)
301 *max_fd = fd; 301 *max_fd = fd;
302 } 302 }
303 } 303 }