diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2015-09-09 14:51:58 +0300 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2015-09-09 14:55:13 +0300 |
commit | 39b50ad105bdc4285d197809436c30595ef6ef12 (patch) | |
tree | 006c9b549db891d3c6f728e5be35e0ff20a40071 /src/notify | |
parent | 542a69a284805aaf5b92b0e5da39339967d516e3 (diff) |
notify: log error when sd_pid_notify() == 0
Diffstat (limited to 'src/notify')
-rw-r--r-- | src/notify/notify.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/notify/notify.c b/src/notify/notify.c index c920b29297..c303bcf718 100644 --- a/src/notify/notify.c +++ b/src/notify/notify.c @@ -195,10 +195,10 @@ int main(int argc, char* argv[]) { if (r < 0) { log_error_errno(r, "Failed to notify init system: %m"); goto finish; - } - - if (r == 0) + } else if (r == 0) { + log_error("No status data could be sent: $NOTIFY_SOCKET was not set"); r = -EOPNOTSUPP; + } finish: return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS; |