From 8a735a8e870fd427ed38990b594e8c52781bd657 Mon Sep 17 00:00:00 2001 From: Dmitry Simonenko Date: Thu, 24 May 2018 19:07:57 +0300 Subject: [PATCH] odyssey: do not exit on SIGHUP --- sources/system.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sources/system.c b/sources/system.c index 302dca50..d00a0ea9 100644 --- a/sources/system.c +++ b/sources/system.c @@ -280,8 +280,7 @@ od_system_signal_handler(void *arg) break; case SIGHUP: od_log(&instance->logger, "system", NULL, NULL, - "SIGHUP received, shutting down"); - exit(0); + "SIGHUP received, skipping"); break; } }