e5e31fe92d
Refresh the patches (Thanks to Thomas Petazzoni's work) Patches removed: 0001-build-avoid-AM_CONDITIONAL-in-conditional-execution.patch 0004-fix-build-with-uClibc.patch 0004-fix-build-with-uClibc.patch 0005-Allow-usage-of-getrpcbynumber-when-getrpcbynumber_r-.patch 0007-sockaddr-h-needs-stddef-h-for-NULL.patch 0008-tirpc-with-pkgconfig.patch Patches modified: 0002-Patch-taken-from-Gentoo.patch 0003-Switch-legacy-index-in-favour-of-strchr.patch 0006-Let-the-configure-script-find-getrpcbynumber-in-libt.patch Patch addedd: 0004-statd-Fix-test-for-foreground-mode.patch Also, change source of the package to git repository (and remove the hash, sourceforce is clearly not a platform which can be trusted nowadays) Rework the startup script to accomodate new rpc.statd The startup scripts now uses rcp.statd -F for a startup in foreground, also we avoid starting it twice, it makes rcp.statd crash the whole script. [Thomas: add patch to fix rpc.statd foreground/daemon mode backported from upstream, and fix the S60nfs init script to not use the -F option of rpc.statd.] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
870 B
Diff
31 lines
870 B
Diff
From ca1fd7153937e147f66d1ca3edbe9c2615f33880 Mon Sep 17 00:00:00 2001
|
|
From: Chris Mayo <aklhfex@gmail.com>
|
|
Date: Sun, 1 Feb 2015 12:03:46 -0500
|
|
Subject: [PATCH] statd: Fix test for foreground mode
|
|
|
|
daemon_init parameter has the opposite sense
|
|
to code removed in commit 7addf9d
|
|
|
|
Signed-off-by: Chris Mayo <aklhfex@gmail.com>
|
|
Signed-off-by: Steve Dickson <steved@redhat.com>
|
|
---
|
|
utils/statd/statd.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/utils/statd/statd.c b/utils/statd/statd.c
|
|
index 60ce6d1..2b7a167 100644
|
|
--- a/utils/statd/statd.c
|
|
+++ b/utils/statd/statd.c
|
|
@@ -393,7 +393,7 @@ int main (int argc, char **argv)
|
|
simulator (--argc, ++argv); /* simulator() does exit() */
|
|
#endif
|
|
|
|
- daemon_init(!(run_mode & MODE_NODAEMON));
|
|
+ daemon_init((run_mode & MODE_NODAEMON));
|
|
|
|
if (run_mode & MODE_LOG_STDERR) {
|
|
xlog_syslog(0);
|
|
--
|
|
2.4.5
|
|
|