commit 5e828bda99ed11ae9f183965eece0b5931ec0270
parent 1b47f81267ec2b9f53afc33c4c67eb49884ab566
Author: Christian Grothoff <christian@grothoff.org>
Date: Sat, 8 Sep 2007 23:46:46 +0000
fmt
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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;
}
}