From: Timo Sirainen Date: Thu, 19 Jun 2003 02:00:25 +0000 (+0300) Subject: Set process count to 1 instead of 0. X-Git-Tag: 1.1.alpha1~4543 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4f3525b5b7cac6bc6af4ccc26dd1ca69abd9d11;p=thirdparty%2Fdovecot%2Fcore.git Set process count to 1 instead of 0. --HG-- branch : HEAD --- diff --git a/src/login-common/main.c b/src/login-common/main.c index ae1bff3f7e..4681179ffd 100644 --- a/src/login-common/main.c +++ b/src/login-common/main.c @@ -131,7 +131,7 @@ static void open_logfile(const char *name) static void drop_privileges(const char *name) { /* make sure we can't fork() */ - restrict_process_size((unsigned int)-1, 0); + restrict_process_size((unsigned int)-1, 1); /* Log file or syslog opening probably requires roots */ open_logfile(name);