child: adapt child_config to contain unsigned integers

as just changed in get_int_arg.

Michael
This commit is contained in:
Michael Adam 2009-08-04 22:57:33 +02:00
parent b4d8c5b9bf
commit 60de38ceaa
2 changed files with 4 additions and 4 deletions

View File

@ -54,8 +54,8 @@ static struct child_s *child_ptr;
static struct child_config_s
{
int maxclients, maxrequestsperchild;
int maxspareservers, minspareservers, startservers;
unsigned int maxclients, maxrequestsperchild;
unsigned int maxspareservers, minspareservers, startservers;
} child_config;
static unsigned int *servers_waiting; /* servers waiting for a connection */
@ -142,7 +142,7 @@ _child_lock_release (void)
* Set the configuration values for the various child related settings.
*/
short int
child_configure (child_config_t type, int val)
child_configure (child_config_t type, unsigned int val)
{
switch (type)
{

View File

@ -36,6 +36,6 @@ extern void child_close_sock (void);
extern void child_main_loop (void);
extern void child_kill_children (void);
extern short int child_configure (child_config_t type, int val);
extern short int child_configure (child_config_t type, unsigned int val);
#endif