summaryrefslogtreecommitdiffstats
path: root/chkspawn.c
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2013-02-04 02:42:39 +0100
committermanuel <manuel@mausz.at>2013-02-04 02:42:39 +0100
commitd2b166c433e97c710ec6906493a3bd400d731491 (patch)
treeaf1d09a4c31ddb794715ec57d23ce1d98e92e018 /chkspawn.c
parent881bcbeb395bd6a06e8bcac3d97b2ca3ed3e2f67 (diff)
downloadqmail-d2b166c433e97c710ec6906493a3bd400d731491.tar.gz
qmail-d2b166c433e97c710ec6906493a3bd400d731491.tar.bz2
qmail-d2b166c433e97c710ec6906493a3bd400d731491.zip
[PATCH] Increase limits for large mail systems
big-concurrency
Diffstat (limited to 'chkspawn.c')
-rw-r--r--chkspawn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/chkspawn.c b/chkspawn.c
index d19259e..3f97f5a 100644
--- a/chkspawn.c
+++ b/chkspawn.c
@@ -22,8 +22,8 @@ void main()
22 _exit(1); 22 _exit(1);
23 } 23 }
24 24
25 if (auto_spawn > 255) { 25 if (auto_spawn > 65000) {
26 substdio_puts(subfderr,"Oops. You have set conf-spawn higher than 255.\n"); 26 substdio_puts(subfderr,"Oops. You have set conf-spawn higher than 65000.\n");
27 substdio_flush(subfderr); 27 substdio_flush(subfderr);
28 _exit(1); 28 _exit(1);
29 } 29 }