If max-connections is < 0, disable the module.

This commit is contained in:
Wayne Davison
2007-09-18 14:14:22 +00:00
parent 236df01b15
commit d34cd639fc

View File

@@ -26,7 +26,7 @@ int claim_connection(char *fname, int max_connections)
{
int fd, i;
if (max_connections <= 0)
if (max_connections == 0)
return 1;
if ((fd = open(fname, O_RDWR|O_CREAT, 0600)) < 0)