From: Harlan Stenn Date: Thu, 20 Nov 2003 08:58:27 +0000 (-0500) Subject: [Bug 220] (Frederick Bruckman) The linux resolver needs more stack space. X-Git-Tag: NTP_4_2_3~194^2~15^2~1^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=caceb3db7a3a952686e18efcbbd84caaa8b1e6fe;p=thirdparty%2Fntp.git [Bug 220] (Frederick Bruckman) The linux resolver needs more stack space. bk: 3fbc8233E0ir7G11YUVAS8o6MWSQ_w --- diff --git a/ntpd/ntpd.c b/ntpd/ntpd.c index 0b052535e7..a4ff1855b8 100644 --- a/ntpd/ntpd.c +++ b/ntpd/ntpd.c @@ -678,7 +678,7 @@ service_main( struct rlimit rl; if (getrlimit(RLIMIT_STACK, &rl) != -1 - && (rl.rlim_cur = 20 * 4096) < rl.rlim_max) + && (rl.rlim_cur = 50 * 4096) < rl.rlim_max) { if (setrlimit(RLIMIT_STACK, &rl) == -1) {