diff options
author | Christian Grothoff <christian@grothoff.org> | 2007-09-08 23:46:46 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2007-09-08 23:46:46 +0000 |
commit | 5e828bda99ed11ae9f183965eece0b5931ec0270 (patch) | |
tree | 0b4379c58060218ef06f4b24ebe3922a6f228f74 | |
parent | 1b47f81267ec2b9f53afc33c4c67eb49884ab566 (diff) |
fmt
-rw-r--r-- | src/daemon/connection.c | 2 |
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, connection->read_buffer_size = connection->read_buffer_size * 2 + MHD_BUF_INC_SIZE; FD_SET (fd, read_fd_set); - if (fd > *max_fd) + if (fd > *max_fd) *max_fd = fd; } } |