From e4f3525b5b7cac6bc6af4ccc26dd1ca69abd9d11 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 19 Jun 2003 05:00:25 +0300 Subject: [PATCH] Set process count to 1 instead of 0. --HG-- branch : HEAD --- src/login-common/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3