- From 1e3d97341e7c972264a3436b7ed2216d8372dfc6 Mon Sep 17 00:00:00 2001
- From: Cedric Blancher <cedric.blancher@gmail.com>
- Date: Sat, 14 Oct 2023 14:49:40 +0200
- Subject: [PATCH 2/2] nfs_daemon: Daemon should exit with non-zero exit code on
- errors
- Fix more instances where the nfs daemon should return a non-zero
- exit code on failure.
- Signed-off-by: Roland Mainz <roland.mainz@nrubsig.org>
- ---
- daemon/nfs41_daemon.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
- diff --git a/daemon/nfs41_daemon.c b/daemon/nfs41_daemon.c
- index 04086ea..e496c0c 100644
- --- a/daemon/nfs41_daemon.c
- +++ b/daemon/nfs41_daemon.c
- @@ -370,9 +370,9 @@ VOID ServiceStart(DWORD argc, LPTSTR *argv)
- nfsd_args cmd_args;
- if (!check_for_files())
- - exit(0);
- + exit(1);
- if (!parse_cmdlineargs(argc, argv, &cmd_args))
- - exit(0);
- + exit(1);
- set_debug_level(cmd_args.debug_level);
- open_log_files();
- --
- 2.39.0
nfs_daemon: Daemon should exit with non-zero exit code on errors
Posted by Anonymous on Sat 14th Oct 2023 14:03
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.