From df36a2a019b7c9f3900a36d12020722c0eb5e25b Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 6 Apr 2009 14:20:12 -0400 Subject: [PATCH] system_user -> system_groups_user change broke it completely. --HG-- branch : HEAD --- src/master/mail-process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/master/mail-process.c b/src/master/mail-process.c index ed7e848d1d..3c112ebea4 100644 --- a/src/master/mail-process.c +++ b/src/master/mail-process.c @@ -323,8 +323,8 @@ create_mail_process(enum process_type process_type, struct master_settings *set, chroot_dir = *args + 7; else if (strncmp(*args, "nice=", 5) == 0) nice_value = atoi(*args + 5); - else if (strncmp(*args, "system_groups_user=", 12) == 0) - system_groups_user = *args + 12; + else if (strncmp(*args, "system_groups_user=", 19) == 0) + system_groups_user = *args + 19; else if (strncmp(*args, "uid=", 4) == 0) { if (uid != (uid_t)-1) { i_error("uid specified multiple times for %s", -- 2.47.3