summaryrefslogtreecommitdiffhomepage
path: root/src/child.c
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2004-08-10 21:24:24 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2004-08-10 21:24:24 +0000
commitbadc7673d06257b720444c785efa3fbd3233f69e (patch)
treede8c0078324299a9ca41188bf337e0cfc4adc526 /src/child.c
parent18df4910a43e8f1b0d9d10df37236fabf0ba8508 (diff)
Merged in changes from 1.6.3
Diffstat (limited to 'src/child.c')
-rw-r--r--src/child.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/child.c b/src/child.c
index 25f87fa..25e8eb9 100644
--- a/src/child.c
+++ b/src/child.c
@@ -1,4 +1,4 @@
-/* $Id: child.c,v 1.14 2004-02-13 21:27:42 rjkaes Exp $
+/* $Id: child.c,v 1.15 2004-08-10 21:24:23 rjkaes Exp $
*
* Handles the creation/destruction of the various children required for
* processing incoming connections.
@@ -47,8 +47,8 @@ struct child_s {
static struct child_s *child_ptr;
static struct child_config_s {
- unsigned int maxclients, maxrequestsperchild;
- unsigned int maxspareservers, minspareservers, startservers;
+ int maxclients, maxrequestsperchild;
+ int maxspareservers, minspareservers, startservers;
} child_config;
static unsigned int* servers_waiting; /* servers waiting for a connection */
@@ -129,7 +129,7 @@ _child_lock_release(void)
* Set the configuration values for the various child related settings.
*/
short int
-child_configure(child_config_t type, unsigned int val)
+child_configure(child_config_t type, int val)
{
switch (type) {
case CHILD_MAXCLIENTS: