From dd425bf71fcc1c93cb328974e0a6c033786d85ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Tue, 29 Sep 1998 21:32:24 +0200 Subject: [PATCH] Increased the default fd max limit to 131072 (was 16384). Should be enough for a couple of years more... :-) Rev: src/configure.in:1.242 --- src/configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/configure.in b/src/configure.in index a3c1779c1b..0f4f4b22b1 100644 --- a/src/configure.in +++ b/src/configure.in @@ -1,4 +1,4 @@ -AC_REVISION("$Id: configure.in,v 1.241 1998/09/27 19:42:32 grubba Exp $") +AC_REVISION("$Id: configure.in,v 1.242 1998/09/29 19:32:24 grubba Exp $") AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h) @@ -2176,10 +2176,10 @@ int main() }else{ if(lim.rlim_max == RLIM_INFINITY) { - limit=16384; /* noone needs more */ + limit=131072; /* Noone needs more :-) */ }else{ limit=lim.rlim_max; - if(limit > 16384) limit=16384; + if(limit > 131072) limit=131072; } } #else -- GitLab