summaryrefslogtreecommitdiff
path: root/mda/putmail/putmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'mda/putmail/putmail.c')
-rw-r--r--mda/putmail/putmail.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/mda/putmail/putmail.c b/mda/putmail/putmail.c
index 3fa6a57ea..eb01cf9d2 100644
--- a/mda/putmail/putmail.c
+++ b/mda/putmail/putmail.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2007-2021 Free Software Foundation, Inc.
+ Copyright (C) 2007-2024 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -44,10 +44,9 @@ main (int argc, char **argv)
MU_APP_INIT_NLS ();
/* Default locker settings */
- mu_locker_set_default_flags (MU_LOCKER_PID|MU_LOCKER_RETRY,
- mu_locker_assign);
- mu_locker_set_default_retry_timeout (1);
- mu_locker_set_default_retry_count (300);
+ mu_locker_defaults.flags = MU_LOCKER_FLAG_CHECK_PID | MU_LOCKER_FLAG_RETRY;
+ mu_locker_defaults.retry_sleep = 1;
+ mu_locker_defaults.retry_count = 300;
/* Register needed modules */
MU_AUTH_REGISTER_ALL_MODULES ();

Return to:

Send suggestions and report system problems to the System administrator.