aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2007-09-08 23:46:46 +0000
committerChristian Grothoff <christian@grothoff.org>2007-09-08 23:46:46 +0000
commit5e828bda99ed11ae9f183965eece0b5931ec0270 (patch)
tree0b4379c58060218ef06f4b24ebe3922a6f228f74
parent1b47f81267ec2b9f53afc33c4c67eb49884ab566 (diff)
downloadlibmicrohttpd-5e828bda99ed11ae9f183965eece0b5931ec0270.tar.gz
libmicrohttpd-5e828bda99ed11ae9f183965eece0b5931ec0270.zip
fmt
-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 }