diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2007-03-05 02:06:15 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2007-03-05 02:06:15 +0000 |
commit | 68dd087e4841b001039091b49a97d507c5029681 (patch) | |
tree | 11d8cb9ba4bcf809d13a5eeac76c461cc4b1c408 /libexec | |
parent | fa3fb12070575efa53301c48931a2f5b3abc9271 (diff) |
revert unintentional MAXCON change back to 800, accidentally did last
commit with the U of A value, which may not be safe on all GENERICs with
an unmodified kern.maxfiles
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/spamd/spamd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamd/spamd.c b/libexec/spamd/spamd.c index 075f63a2c49..30ece7bf9f9 100644 --- a/libexec/spamd/spamd.c +++ b/libexec/spamd/spamd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spamd.c,v 1.93 2007/03/04 03:19:41 beck Exp $ */ +/* $OpenBSD: spamd.c,v 1.94 2007/03/05 02:06:14 beck Exp $ */ /* * Copyright (c) 2002 Theo de Raadt. All rights reserved. @@ -127,7 +127,7 @@ size_t cbs, cbu; time_t t; -#define MAXCON 1800 +#define MAXCON 800 int maxcon = MAXCON; int maxblack = MAXCON; int blackcount; |