From 15736d2bd542588c873a156a3d7eefe5efa729e6 Mon Sep 17 00:00:00 2001 From: lace <> Date: Sun, 22 Jan 2006 11:24:00 +0000 Subject: [PATCH] Avoid g_log_set_always_fatal() for the FUSE client. - It should fix restarting of children on any sandbox failure. --- src/client/fuse/main.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/client/fuse/main.c b/src/client/fuse/main.c index 3ed51e8..488d547 100644 --- a/src/client/fuse/main.c +++ b/src/client/fuse/main.c @@ -146,11 +146,9 @@ char **sp; } #endif - g_log_set_always_fatal(~(0 - |G_LOG_LEVEL_MESSAGE - |G_LOG_LEVEL_INFO - |G_LOG_LEVEL_DEBUG - )); + /* Do not set g_log_set_always_fatal() here as we would not be able + * to restart failed children due to communication-failure alarms. + */ captive_standalone_init(); -- 1.8.3.1