From: Lennart Poettering Date: Mon, 12 Nov 2018 12:31:53 +0000 (+0100) Subject: journal-remote: log about inability to install signals X-Git-Tag: v240~342^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10741%2Fhead;p=thirdparty%2Fsystemd.git journal-remote: log about inability to install signals --- diff --git a/src/journal-remote/journal-remote-main.c b/src/journal-remote/journal-remote-main.c index 76e7af28bff..930871b13b6 100644 --- a/src/journal-remote/journal-remote-main.c +++ b/src/journal-remote/journal-remote-main.c @@ -560,7 +560,9 @@ static int create_remoteserver( if (r < 0) return r; - setup_signals(s); + r = setup_signals(s); + if (r < 0) + return log_error_errno(r, "Failed to set up signals: %m"); n = sd_listen_fds(true); if (n < 0)